

*{
  -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%;
}
body{
  color: #222;
  background: #fff;
  font-family: "微軟正黑體", 'Chivo', Arial, 'Noto Sans TC', Heiti TC, "メイリオ", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.6px;
}
body.hidden{
  overflow: hidden;
}

.Chivo{
  font-family: 'Chivo', 'Noto Sans TC', sans-serif;
  font-weight: 400;
}
.txt_oneLine{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
a.no_link{
  cursor: auto;
}

/* 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: #666;
    -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: #999;
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 1px;
  }

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

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

  /* .wrap{
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    position: relative;
  } */

  .btn{
    position: relative;
  }
  .btn a{
    color: #fff;
    background: #ecb44a;
    border-radius: 0;
    display: inline-block;
    width: 250px;
    height: 55px;
    font-size: 15px;
    font-weight: 400;
    line-height: 55px;
    letter-spacing: 1px;
    text-align: center;
    position: relative;
    padding-right: 35px;
    overflow: hidden;
    z-index: 5;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
  }
  .btn a.btn_color2{
    background: #999;
  }
  .btn a:hover{
    background: #f67e2a;
  }
  .btn a::before{
    content: '';
    width: 28px;
    height: 8px;
    background: url(../images/btn_arrow.png) no-repeat;
    position: absolute;
    top: calc(50% - 4px);
    right: calc(50% - 70px);
  }
  .btn a:hover::before{
    -webkit-animation: arrowmove 1s ease infinite;
    animation: arrowmove 1s ease infinite;
  }

  .btn_more{
    position: relative;
  }
  .btn_more a{
    display: inline-block;
    width: 100px;
    height: 30px;
    font-size: 0;
    position: relative;
  }
  .btn_more a::before{
    content: '';
    width: 100%;
    height: 100%;
    background: url(../images/right-arrow.png) no-repeat center right;
    position: absolute;
    top: 0;
    left: 0;
  }
  .btn_more a:hover::before,
  li:hover .btn_more a::before{
    -webkit-animation: arrowmove 1s ease infinite;
    animation: arrowmove 1s ease infinite;
  }
  @-webkit-keyframes arrowmove {
      0% {
        -webkit-transform: translate(0,0);
        -ms-transform: translate(0,0);
        transform: translate(0,0);
      }
      40% {
        -webkit-transform: translate(-20px,0);
        -ms-transform: translate(-20px,0);
        transform: translate(-20px,0);
      }
      100% {
        -webkit-transform: translate(0,0);
        -ms-transform: translate(0,0);
        transform: translate(0,0);
      }
  }
  @keyframes arrowmove {
      0% {
        -webkit-transform: translate(0,0);
        -ms-transform: translate(0,0);
        transform: translate(0,0);
      }
      40% {
        -webkit-transform: translate(-20px,0);
        -ms-transform: translate(-20px,0);
        transform: translate(-20px,0);
      }
      100% {
        -webkit-transform: translate(0,0);
        -ms-transform: translate(0,0);
        transform: translate(0,0);
      }
  }
  .btn.booking a{
    width: 100%;
    height: 60px;
    line-height: 60px;
  }
  .btn.booking a:hover{
    background: #01afb8;
  }
  .btn.bookingIcon{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
  }
  .btn.bookingIcon a{
    width: 100%;
    height: 90px;
    line-height: 30px;
    padding-right: 0;
    background: #999;
    padding-top: 20px;
  }
  .btn.bookingIcon a:first-of-type{
    background: #01afb8;
  }
  .btn.bookingIcon a:hover{
    background: #ecb44a;
  }
  .btn.bookingIcon a i{
    display: block;
    line-height: 30px;
    font-size: 26px;
  }
  .btn.bookingIcon a::before{
      display: none;
  }

  .featureArea .titleBox{
    text-align: center;
    position: relative;
    z-index: 5;
  }
  .featureArea .titleBox h2{
    display: block;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 8px;
    position: relative;
    z-index: 1;
  }
  .featureArea .titleBox h2.plus{
    font-size: 50px;
    font-weight: bold;
    letter-spacing: 3px;
  }
  .featureArea .titleBox em{
    display: block;
    color: #000;
    font-size: 56px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 1.2;
    text-transform: uppercase;
    position: relative;
    padding-top: 48px;
  }
  .featureArea .titleBox em strong{
    position: relative;
    display: inline-block;
    font-weight: 700;
  }
  .featureArea .titleBox em::before{
    content: '';
    width: 40px;
    height: 38px;
    /* background: url(../images/dec.png) no-repeat; */
    position: absolute;
    top: 0;
    left: calc(50% - 20px);
  }

  /* goTopButton */
    .goTopBox{
      position: fixed;
      bottom: 170px;
      right: 70px;
      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{
      display: block;
      width: 70px;
      height: 70px;
      border: 1px solid rgba(255, 255, 255, 0.5);
      background: url(../images/top.png) no-repeat center, #019da5;
    }
    .goTopBox a.goTop:hover{
        margin-bottom: 5px;
    }

/**********outerWrap**********/
  .outerWrap{ 
    overflow: hidden;
    position: relative;
  }

/************網頁頭************/
  /* header{
    width: 100%;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.15);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
  } */
  /* header.shrink{}
  header .wrap{
    /*max-width: 1240px;*/
    /* max-width: 1740px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
  } */ 

  /*logo*/
  /* header .logo{
    display: inline-block;
    width: 355px;
    margin: 0;
    position: relative;
  } */
  /* header .logo a{
    display: block;
    width: 100%;
    height: 44px; 
    background: url(../images/logo.png) no-repeat center;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    position: relative;
    text-indent: -9999px;
  } */

  /* header .rightBox{
    width: calc(100% - 355px);
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: flex-end;
    -ms-align-items: center;
    align-items: center;
  } */
  /* header .share{
    width: 115px;
    cursor: pointer;
    color: #fff;
    font-size: 13px;
    background: #01afb8;
    border-radius: 20px;
    line-height: 40px;
    text-transform: uppercase;
    text-align: center;
    padding: 0 5px;
    margin-left: 15px;
    position: relative;
  }
  header .share.share_fb{
    width: 40px;
    background: #3859d4;
  }
  header .share span{
    position: relative;
    padding-left: 30px;
  }
  header .share span::before{
    content: '';
    width: 21px;
    height: 22px;
    background: url(../images/share.png) no-repeat;
    position: absolute;
    top: calc(50% - 11px);
    left: 0;
  }
  header .share.share_fb a{
    width: 100%;
    height: 40px;
    background: transparent;
    font-size: 0;
    line-height: 40px;
    margin: 0;
  }
  header .share.share_fb a i{
    font-size: 18px;
    line-height: 40px;
  }
  header .share .bottom{
    width: 50px;
    position: absolute;
    top: 100%;
    left: calc(50% - 25px);
    display: none;
  }
  .share_icon{}
  .share_icon a{
    width: 50px;
    height: 50px;
    background: #000;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    line-height: 50px;
    text-align: center;
    display: block;
    position: relative;
    margin-top: 6px;
  } */
  .share_icon a.fb{
    background: #3b5693;
  }
  .share_icon a.gPlus{
    background: #d14e40;
  }
  .share_icon a.line{
    font-size: 0;
    background: #4da938;
  }
  .share_icon a.line::before{
    content: '';
    width: 100%;
    height: 100%;
    background: url(../images/line.png) no-repeat center;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .share_icon a:hover{
    background: #000;
  }
    /* header .loginBox > a{
      display: inline-block;
      width: 40px;
      height: 40px;
      line-height: 40px;
      margin-left: 10px;
      color: #fff;
      text-align: center;
      background: #000;
      border-radius: 50%;
    } */
    a.cartToggle {
        position: relative;
        width: 40px;
        height: 40px;
        line-height: 40px;
        margin-left: 8px;
        margin-bottom: 15px;
        border-radius: 50%;
        font-size: 20px;
        color: #fff;
        text-align: center;
        background-color: #01afb8;
    }
    a.cartToggle.fb {
        background-color: #3b5693;
    }
    a.cartToggle span {
        position: absolute;
        top: -5px;
        right: -5px;
        width: 20px;
        height: 20px;
        line-height: 20px;
        border-radius: 50%;
        font-size: 12px;
        background-color: #d89445;
    }
    a.cartToggle b {
        position: absolute;
        top: 100%;
        right: -5px;
        width: calc(100% + 10px);
        line-height: 20px;
        font-size: 12px;
        color: #333;
        letter-spacing: 0pt;
    }

/*********單元列***********/
  /* .menuBox{
    padding-left: 20px;
    padding-right: 20px;
    z-index: 50;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
  } */
  ul.menu{}
  /* ul.menu > li{
    display: inline-block;
    text-align: center;
    position: relative;
    -webkit-transition: all 0.4 ease;
    -moz-transition: all 0.4 ease;
    -o-transition: all 0.4 ease;
    transition: all 0.4 ease;
  }
  ul.menu > li.hidden{
      display: none;
  } */
  /* ul.menu li > a{ 
    color: #222;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 2.5px;
    /* padding: 36px 15px 36px 15px; */
    padding: 36px 7px 36px 7px;
    display: inline-block;
    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;
  }   */
  /* header.shrink ul.menu li > a{
    padding-top: 26px;
    padding-bottom: 26px;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
  } */
  ul.menu li:hover > a,
  ul.menu li > a.current{}
  /* ul.menu li > a::before{
    content: '';
    width: calc(100% - 52px);
    height: 3px;
    background: #01afb8;
    position: absolute;
    top: calc(100% - 0px);
    left: 26px;
    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;
  } */
  ul.menu li > a.current::before,
  ul.menu li:hover > a::before{
    top: calc(100% - 3px);
    opacity: 1;
    -webkit-transition: all 0.4s 0.1s ease;
    -moz-transition: all 0.4s 0.1s ease;
    -o-transition: all 0.4s 0.1s ease;
    transition: all 0.4s 0.1s ease;
  }
  ul.menu li.dropDown > a::before{
    top: calc(100% - 3px);
  }
  ul.menu li.dropDown:hover > a::before{
    width: 100%;
    left: 0;
  }
  ul.menu li > a::after{
    content: '';
    width: 18px;
    height: 18px;
    /* background: url(../images/dec_menu.png) no-repeat; */
    position: absolute;
    top: calc(50% - 12px);
    left: 1px;
    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;
  }
  ul.menu li > a.current::after{
    /*opacity: 1;*/
  }

  /* ul.menu > li .submenu{
    width: 140px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: absolute;
    left: calc(50% - 70px);
    z-index: 99;
    display: none;
  } */
  /* ul.menu > li .submenu > a,
  ul.menu > li .submenu .submenu_li 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,
  ul.menu > li .submenu .submenu_li:last-child > a{
    border: 0;
  }
  ul.menu > li .submenu a:hover{
    color: #fff;
    background: #01afb8;
  }
  ul.menu > li .submenu .submenu_li{
    position: relative;
  }
  ul.menu > li .submenu .submenu_li.dropDown:hover > a{
    color: #fff;
    background: #01afb8;
  }
  ul.menu > li .submenu .submenu_li.dropDown::before{
    content: '';
    width: 5px;
    height: 5px;
    border: 1px solid #333;
    border-left: 0;
    border-bottom: 0;
    position: absolute;
    top: calc(50% - 3px);
    right: 10px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  ul.menu > li .submenu .submenu_li.dropDown:hover::before{
    border: 1px solid #fff;
    border-left: 0;
    border-bottom: 0;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  ul.menu > li .submenu .submenu_li .submenu2{
    display: none;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 1;
  }
  ul.menu > li .submenu .submenu_li .submenu2.big{
    width: 115%;
  } */

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


/**********moduleBox**********/
  .moduleBox{
    position: fixed;
    left: 50%;
    top: 48%;
    -webkit-transform: translate(-50%, -55%);
        -ms-transform: translate(-50%, -55%);
            transform: translate(-50%, -55%);
    z-index: 1005;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .moduleBox.show{
    top: 50%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .moduleMask{
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1003;
    background-color: rgba(17, 17, 17, 0.92);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .moduleMask.show{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

/***********購物車***********/
  .cartArea{
    width: 92%;
    max-width: 480px;
    padding: 5px;
    background: linear-gradient(-144deg, #30f7f7 0%, #01afb8 100%);
  }
  .cartArea .box{
    position: relative;
    width: auto;
    padding: 30px 20px 20px 30px;
    background: #fff;
  }
  @media (max-width: 480px) {
      .cartArea .box{
        padding: 30px 10px 20px 20px;
      }
  }
  a#closeCart{
    width: 50px;
    height: 50px;
    background: #01afb8;
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 18px;
    color: #fff;
    line-height: 50px;
    text-align: center;
  }
  .cartArea h4 {
      font-size: 18px;
  }
  .cartArea h4 span {
      color: #01afb8;
  }
  .cartArea .cart {
    margin: 5px 0 20px;
    padding: 10px 10px 0 0;
    max-height: 140px;
    overflow-y: auto;
  }
  .cartArea .cart ul li{
      padding: 5px 0;
      border-bottom: 1px dashed #b7b7b7;
      clear: both;
  }
  .cartArea .cart ul li img{
      width: 60px;
      float: left;
      margin-right: 10px;
  }
  .cartArea .cart ul li h3 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .cartArea .cart ul li .price {
      display: inline-block;
      font-size: 13px;
      color: #01afb8;
  }
  .cartArea .cart ul li .price::before {
      content: '$ ';
  }
  .cartArea .cart ul li .btnRemove {
        display: block;
        width: 20px;
        height: 20px;
        line-height: 12px;
        border: 3px solid #ccc;
        border-radius: 50%;
        margin-left: auto;
        font-size: 12px;
        color: #999;
        text-align: center;
  }
  .cartArea .btn {
      margin-top: 20px;
  }
  .cartArea .btn a {
      width: 200px;
      height: 40px;
      line-height: 40px;
      padding-right: 0;
  }
  .cartArea .btn a::before{
      display: none;
  }
  
/***********會員登入***********/
  .loginArea{
    width: 92%;
    max-width: 480px;
    padding: 5px;
    background: linear-gradient(-144deg, #30f7f7 0%, #01afb8 100%);
  }
  .loginArea .box{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    max-height: 80vh;
    padding: 50px 30px 30px;
    background: #fff;
    overflow: hidden;
    overflow-y: auto;
  }
  .loginArea .leftBox {
    position: relative;
  }
  @media (min-width: 641px){
      .loginArea .leftBox {
        width: calc(100% - 240px);
        padding-right: 40px;
        padding-bottom: 10px;
      }
  }
  @media (max-width: 640px){
      .loginArea .leftBox {
        width: 100%;
        padding-bottom: 40px;
      }
  }
  .loginArea .leftBox::before {
    content: '';
    position: absolute;
    background-color: #ccc;
  }
  @media (min-width: 641px){
      .loginArea .leftBox::before {
        bottom: 0;
        right: 15px;
        width: 1px;
        height: calc(100% - 10px);
      }
  }
  @media (max-width: 640px){
      .loginArea .leftBox::before {
        bottom: 15px;
        right: 0;
        width: 100%;
        height: 1px;
      }
  }
  .loginArea .leftBox::after {
    content: '或';
    position: absolute;
    padding: 3px;
    background-color: #fff;
  }
  @media (min-width: 641px){
      .loginArea .leftBox::after {
        top: calc(50% - 5px);
        right: 5px;
      }
  }
  @media (max-width: 640px){
      .loginArea .leftBox::after {
        bottom: 0;
        right: calc(50% - 5px);
      }
  }
  @media (min-width: 641px){
      .loginArea .rightBox {
        width: 240px;
        padding-left: 10px;
      }
  }
  @media (max-width: 640px){
      .loginArea .rightBox {
        width: 100%;
      }
  }
  .loginArea .bottomBox {
    width: 100%;
    padding-top: 20px;
    font-size: 14px;
    color: #333;
  }
  @media (min-width: 641px){
      .loginArea .bottomBox {
        text-align: right;
      }
  }
  @media (max-width: 640px){
      .loginArea .bottomBox {
        text-align: center;
      }
  }
  .loginArea .bottomBox a {
    text-decoration: underline;
    margin: 0 3px;
  }
  a#closeLogin{
    width: 50px;
    height: 50px;
    background: #01afb8;
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 18px;
    color: #fff;
    line-height: 50px;
    text-align: center;
  }

  .loginArea h4{
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
  }
  .loginArea input[type="text"],
  .loginArea input[type="password"]{
    width: 100%;
    height: 40px;
    margin-bottom: 10px;
    padding: 5px;
    border: 1px solid #ccc;
  }
  .loginArea input:-moz-placeholder{ 
    color: #999;
  }
  .loginArea input::-moz-placeholder{ 
    color: #999;
  }
  .loginArea input:-ms-input-placeholder{ 
    color: #999;
  }
  .loginArea input::-webkit-input-placeholder{ 
    color: #999;
  }

  .loginArea .login{
  }

  .loginArea .btn,
  .loginArea .btns{
    text-align: center;
    margin-top: 0;
    width: 100%;
  }
  .loginArea .btns{
      margin-top: 5px;
      color: #ccc;
      text-align: left;
  }
  .loginArea .btn a{
    width: 100%;
    height: 45px;
    line-height: 45px;
    padding-right: 0;
    background: #01afb8;
  }
  .loginArea .btn a.btn_forget,
  .loginArea .btn a.btn_register,
  .loginArea .btn a.btn_relog{
    background-color: #999;
  }
  .loginArea .btn a:hover{
      background: #f67e2a;
  }
  .loginArea .btn a::before{
    display: none;
  }

  .loginArea .forget {
    clear: both;
    margin-top: 20px;
    font-size: 15px;
    color: #2f2f2f;
    text-align: center;
  }
  .loginArea .forget span{
    font-size: 10px;
    color: #ccc;
    display: inline-block;
    padding: 0 15px;
  }
  .loginArea .forget strong a{
    font-weight: 400;
    color: #666;
    text-decoration: underline;
  }
  .loginArea .forget b a{
    font-weight: 400;
    font-size: 18px;
    color: #7ea830;
    text-decoration: underline;
    margin-left: 5px;
  }
  .loginArea .forgetCheck {
    display: none;
  }
  /*.loginArea .forgetCheck a.btn_relog{
    margin-right: 15px;
  }*/
  /*.loginArea .btn_register{*/
  /*    color: #f67e2a;*/
  /*}*/
  .loginArea .btn_register:hover,
  .loginArea .btn_relog:hover,
  .loginArea .btn_forget:hover,
  .loginArea .btn_resendVerify:hover{
      text-decoration: underline;
  }
  .loginArea .verifyCheck {
    display: none;
  }
  .loginArea .btn_login {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding: 0 10px;
    margin-top: 15px;
    color: #fff;
    text-decoration: none;
    background-color: #ce4444;
  }
  .loginArea .btn_login.fb {
    background-color: #3a589a;
  }
  .loginArea .btn_login.line {
    background-color: #42b72a;
  }
  .loginArea .btn_login i {
    width: 30px;
    font-size: 18px;
    text-align: center;
  }
  .loginArea .btn_login.line img {
    width: 40px;
    display: inline-block;
    vertical-align: middle;
    margin-left: -5px;
  }
  /*.loginArea .verifyCheck a.btn_relog{
    margin-right: 15px;
  }*/
  .loginBox{
    position: relative;
  }
  .loginBox .submenu{
    width: 100px;
    padding-top: 10px;
    text-align: center;
    position: absolute;
    top: calc(100% + 0px);
    left: calc(50% - 50px);
    z-index: 99;
    display: none;
  }
  .loginBox .submenu a{
    color: #fff;
    background: rgba(17, 17, 17, 0.8);
    padding: 5px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    display: block;
  }
  .loginBox .submenu a:last-child{
    border: 0;
  }
  .loginBox .submenu a:hover{
    background: #000;
  }


  @media (max-width: 750px){
    .loginArea .login .btn.btn1 a{
      width: 110px;
    }
  }
  @media (max-width: 680px){
    .loginArea .login .left{
      width: 50%;
    }
    .loginArea .login .right{
      width: 50%;
    }
    .loginArea .login .btn.btn1 a{
      width: 100px;
    }
  }
  @media (max-width: 640px){
    .loginArea .box{
      padding: 35px 25px 25px;
    }
  }
  @media (max-width: 600px){
    .loginArea .login .left{
      width: 100%;
      padding: 0 0 25px;
    }
    .loginArea .login .right{
      width: 100%;
      padding: 25px 0 0;
      text-align: center;
      border-left: 0;
      border-top: 1px solid #e4e4e4;
    }
  }
  @media (max-width: 480px){
    .loginArea .forget span{
      display: none;
    }
    .loginArea .forget b{}
    .forgetCheck .btn.btn1 a,.forgetCheck .btn.btn1 a{
      width: 125px;
    }
  }
  @media (max-width: 360px){
    .loginArea .box{
      padding: 30px 20px 20px;
    }
    .forgetCheck .btn.btn1 a,.forgetCheck .btn.btn1 a{
      width: 100px;
      padding: 0 10px;
    }
  }

/*********banner**********/
  .bannerArea{
    position: relative;
    overflow: hidden;
  }
  @media (min-width: 1181px){
      .bannerArea{
        min-height: 100px;
      }
  }
  /* .bannerArea .wrap{
    max-width: 1740px;
    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;
    }

  /*banner dotsBox*/
    .bannerBox .dotsBox{
      position: absolute;
      bottom: 65px;
      right: 80px;
    }

  .bannerBox ul#banner{
    margin: 0;
    position: relative;
  }
  .bannerBox ul li{
    padding: 0;
    position: relative;
  }
  .bannerBox ul li .Img{
    display: inline-block;
    vertical-align: top;
  }
  .bannerBox img{
    display: block;
    width: 100%;
  }

  /*bannerTxt*/
    .bannerBox ul li > .bannerTxt{
      color: #fff;
      font-size: 16px;
      width: 100%;
      max-width: 1500px;
      text-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
      position: absolute;
      top: 50%;
      left: 50%;
      -ms-transform: translate(-50%,-35%);
      -moz-transform: translate(-50%,-35%);
      -webkit-transform: translate(-50%,-35%);
      -o-transform: translate(-50%,-35%);
      transform: translate(-50%,-35%);
    }
    .bannerBox ul li > .bannerTxt a{
      color: #fff;
    }
    .bannerBox ul li > .bannerTxt em{
      display: block;
      font-size: 70px;
      font-weight: 400;
      letter-spacing: -0.5px;
      line-height: 1.1;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .bannerBox ul li > .bannerTxt em strong{
      display: block;
      font-size: 100px;
      font-weight: 400;
      letter-spacing: -0.5px;
    }
    .bannerBox ul li > .bannerTxt h3{
      font-size: 36px;
      font-weight: 400;
      letter-spacing: 2px;
    }
    .bannerBox ul li > .bannerTxt p{
      color: #fff;
      font-size: 16px;
      font-weight: 400;
      letter-spacing: 2px;
    }

/***********頁尾***********/
  footer{
    position: relative;
    background: #019da5;
    padding: 120px 0 90px;
    z-index: 1;
  }
  footer::before,
  footer::after{
    content: '';
    width: 120%;
    height: 100%;
    background: #019da5;
    position: absolute;
    top: -13px;
    z-index: -1;
  }
  footer::before{
    left: 0;
    -webkit-transform: rotate(-4deg);
    -ms-transform: rotate(-4deg);
    transform: rotate(-4deg);
  }
  footer::after{
    right: 0;
    -webkit-transform: rotate(4deg);
    -ms-transform: rotate(4deg);
    transform: rotate(4deg);
  }
  footer .wrap{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    position: relative;
    z-index: 1;
  }
  footer .wrap::before{
    content: '';
    width: 1018px;
    height: 1015px;
    background: url(../images/footer.png) no-repeat;
    position: absolute;
    bottom: -130px;
    right: calc(100% - 320px);
    opacity: 0.15;
    z-index: -1;
  }
  footer .linkBox{
    width: calc(100% - 510px - 300px);
  }
  footer .contactBox{
    width: 510px;
  }
  footer .otherBox{
    width: 300px;
  }
  footer h3{
    color: #fff;
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 30px;
    position: relative;
  }
  footer .linkBox > h3::before,
  footer .contactBox > h3::before,
  footer .otherBox > h3::before{
    content: '';
    width: calc(100% + 140px);
    height: 1px;
    background: #00dddd;
    position: absolute;
    bottom: 5px;
    left: -70px;
    opacity: 0.5;
  }
  footer .contactBox > h3::before{
    width: 100%;
    left: 0;
  }

  footer .otherBox ul li{
    padding: 0;
  }
  footer .otherBox ul li h3{
    font-size: 0;
  }
  footer .linkBox .menu{
    width: 100%;
    max-width: 240px;
    /* max-width: 320px; */ /*new*/
    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;
  }
  footer .linkBox .menu a{
    width: 50%;
    /* min-width: calc(100% / 3); */ /*new*/
    color: #fff;
    font-size: 16px;
    letter-spacing: 1.6px;
    /* letter-spacing: 1px; */ /*new*/
    line-height: 34px;
  }
  footer .linkBox .menu a:hover{
    text-decoration: underline;
  }
  footer .contactBox{}
  footer .contactBox .info{
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1px;    
    color: #fff;
  }
  footer .contactBox .info address{
    font-style: normal;
  }
  footer .contactBox .info span{
    width: 100px;
    display: inline-block;
    color: #30f7f7;
    font-size: 15px;
    text-transform: uppercase;
    padding-left: 10px;
    position: relative;
  }
  footer .contactBox .info span::before{
    content: '';
    width: 5px;
    height: 1px;
    background: #30f7f7;
    position: absolute;
    top: 50%;
    left: 0;
  }
  footer .contactBox .info a{
    display: inline-block;
    color: #fff;
    font-size: 14px;
  }
  footer .contactBox .info a:hover{
    text-decoration: underline;
  }
  footer .contactBox .copyright{
    color: #30f7f7;
    font-size: 13px;
    letter-spacing: 1px;
    display: block;
    margin-top: 10px;
  }
  .translateIbest{
    display: block;
    vertical-align: middle;
    position: relative;
  }
  .translateIbest .design span{
    display: block;
    font-size: 13px;
    color: #30f7f7;
  }
  .translateIbest .design a{
    text-decoration: none;
    color: #30f7f7;
    display: inline-block;
    font-size: 13px;
  }
  .translateIbest .design a:hover{
    text-decoration: underline;
  }

/***********快速連結***********/
    .sideQuickLink {
        position: fixed;
        bottom: 35%;
        right: 0;
        z-index: 998;
    }
    /*@media (max-width: 640px) {
        .sideQuickLink {
            bottom: 35%;
        }
    }*/
    .sideQuickLink a {
        display: block;
        width: 70px;
        height: 70px;
        padding: 12px 0 0;
        border-radius: 0;
        font-size: 12px;
        color: #fff;
        text-align: center;
        background-color: #888;
    }
    @media (max-width: 640px) {
        .sideQuickLink a {
            width: 60px;
            height: 60px;
            padding: 10px 0 0;
        }
    }
    .sideQuickLink a i {
        display: block;
        margin-bottom: 3px;
        font-size: 26px;
    }
    @media (max-width: 640px) {
        .sideQuickLink a i {
            font-size: 20px;
        }
    }
    .sideQuickLink a + a {
        margin-top: 5px;
    }
    .usefulLinkArea {
        width: 98%;
        max-width: 1100px;
        max-height: 90vh;
        padding: 30px 30px 100px;
        overflow-y: auto;
    }
    .usefulLinkArea h3 {
        position: relative;
        margin-bottom: 50px;
        border-radius: 10px;
        font-size: 24px;
        color: #000;
        text-align: center;
        background-color: #fff;
    }
    @media (max-width: 640px) {
        .usefulLinkArea h3 {
            margin-bottom: 30px;
        }
    }
    .usefulLinkArea h3 .moduleClose{
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
    }
    .usefulLinkArea .usefulLinkList {
        display: flex;
        flex-wrap: wrap;
    }
    .usefulLinkArea .usefulLinkList li {
        width: calc(100% / 3);
        padding: 10px;
    }
    @media (max-width: 960px) {
        .usefulLinkArea .usefulLinkList li {
            width: 100%;
        }
    }
    .usefulLinkArea .usefulLinkList a {
        font-size: 16px;
        color: #fff;
    }
    .usefulLinkArea .usefulLinkList a img {
        display: inline-block;
        vertical-align: middle;
        width: 45px;
        height: 45px;
        margin-right: 20px;
    }

/***********內頁***********/
  .mainArea.ins{
    padding: 75px 0 130px;
  }
  .mainArea.ins .wrap.big{
    max-width: 1200px;
  }

  /*網站導覽bread*/
    .mainArea.ins .bread{
      color: #999;
      font-size: 16px;
      letter-spacing: .2px;
      z-index: 5;
    }
    @media (min-width: 641px){
        .mainArea.ins .bread{
          position: absolute; 
          top: -20px;
          left: 0;
        }
    }
    @media (max-width: 640px){
        .mainArea.ins .bread{
          width: 100%;
          margin-top: 10px;
          text-align: center;
        }
    }
    .mainArea.ins .bread a{
      color: #999;
    }
    .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{
        margin: 0 3px;
      color: #999;
    }

  /*topBtnBox*/
    .mainArea .topBtnBox{
        position: relative;
      padding: 80px 0 60px;
      margin: 25px auto 0;
      max-width: 1500px;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
    }
    @media (min-width: 1181px){
        .mainArea .topBtnBox .bread{
            top: 10px;
            left: 10px;
        }
    }
    @media (min-width: 641px) and (max-width: 1180px){
        .mainArea .topBtnBox .bread{
            left: 20px;
        }
    }
    .mainArea .topBtnBox .titleBox{
      width: 50%;
      text-align: left;
      padding-left: 70px;
    }
    .mainArea .topBtnBox .titleBox::before{
      content: '';
      width: 1px;
      height: 100%;
      background: #ccc;
      position: absolute;
      top: 0;
      right: 0;
    }
    .mainArea .topBtnBox .titleBox em{
      padding-top: 0;
    }
    .mainArea .topBtnBox .titleBox em::before{
      top: 15px;
      left: -60px;
    }
    .mainArea .topBtnBox .backBox{
      width: 50%;
      text-align: right;
      padding-top: 20px;
      padding-right: 100px;
    }
    .mainArea .topBtnBox .backBox a{
      color: #000;
    }
    .mainArea .topBtnBox .backBox em{
      display: block;
      color: #000;
      font-size: 36px;
      font-weight: 400;
      letter-spacing: 0px;
      line-height: 1.2;
      text-transform: uppercase;
      position: relative;
    }
    .mainArea .topBtnBox .backBox em span{
      font-weight: 700;
    }
    .mainArea .topBtnBox .backBox em a{
    }
    .mainArea .topBtnBox .backBox em a::before{
      content: '';
      width: 63px;
      height: 19px;
      background: url(../images/btn-right-arrow.png) no-repeat;
      position: absolute;
      top: calc(50% - 10px);
      right: -90px;
    }
    .mainArea .topBtnBox .backBox strong{
      display: block;
      color: #000;
      font-size: 16px;
      font-weight: 400;
      letter-spacing: 8px;
    }
  
  .mainArea .contentBox{
    padding: 35px 0 0;
    position: relative;
    z-index: 5;
  }
  .mainArea .contentBox .wrap{
    max-width: 1000px;
  }

  /*文章標題*/
    .mainArea .contentBox .articleTitle{
      color: #000;
      font-size: 26px;
      font-weight: 400;
      letter-spacing: 0.8px;
      line-height: 1.4;
      margin: 5px 0 10px;
      padding: 0 0 30px;
      position: relative;
      text-align: left;
      display: block;
    }
    .mainArea .contentBox .articleTitle::before{
      content: '';
      width: 100%;
      height: 12px;
      background: url(../images/dash.png) repeat top left;
      position: absolute;
      bottom: 0;
      left: 0;
    }

  /*類別*/
    .m_classLink{
      display: none;
    }
    .classBox{
      width: 100%;
      padding: 0 0 50px;
      text-align: center;
    }
    ul.classLink{
      padding: 5px 0;
      display: block;
      position: relative;
      z-index: 50;
    }
    ul.classLink::before{
      content: '';
      width: 1920px;
      height: 1px;
      background: #e4e4e4;
      position: absolute;
      top: 25px;
      left: calc(50% - 10px);
    }
    ul.classLink li{
      display: inline-block;
      text-align: center;
      position: relative;
      padding: 5px 8px;
      margin-bottom: 5px;
    }
    ul.classLink li a{
      min-width: 130px;
      display: block;
      font-size: 15px;
      font-weight: 400;
      position: relative;
      padding: 0 15px;
      color: #01afb8;
      line-height: 35px;
      letter-spacing: 1px;
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }
    ul.classLink li:hover > a,
    ul.classLink li > a.current{
      color: #fff;
      background: #01afb8;
    }

    ul.classLink li > dl{
      display: none;
      background: transparent;
      width: 130px;
      position: absolute;
      top: calc(100% + 0px);
      left: calc(50% - 65px);
    }
    ul.classLink li > dl dt{
      display: block;
    }
    ul.classLink li > dl a,
    ul.classLink li a.current + dl a{
      display: block;
      margin: 0 0 5px;
      color: #f67e2a;
      letter-spacing: 0.5px;
      font-size: 14px;
      border: 1px solid #e4e4e4;
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    }
    ul.classLink li > dl a:hover,
    ul.classLink li a.current + dl a:hover,
    ul.classLink li a.current + dl a.current{
      background: #f67e2a;
      color: #fff;
    }

  /*類別說明*/
    .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;
      background: #395792;
      border-radius: 50%;
      color: #fff;
      font-size: 15px;
      line-height: 35px;
      display: inline-block;
      vertical-align: top;
      text-align: center;
      margin: 0 3px;
    }
    .mainArea .side_share a.line{
      font-size: 12px;
      letter-spacing: -0.5px;
      background: #4da938;
    }
    .mainArea .side_share a.gPlus{
      background: #d14e40;
    }
    .mainArea .side_share a:hover{
      background: #2e1a13;
    }

  /*頁籤*/
    .tab{
      margin: 35px 0 0;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
    }
    .tab a{
      width: 50%;
      display: block;
      position: relative;
      padding: 8px 25px;
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 1px;
      text-align: center;
      color: #222;
      background: #ddd;
    }
    .tab a:hover{
      color: #fff;
      background: #f67e2a;
    }
    .tab a.current{
      color: #fff;
      background: #01afb8;
    }
    .tab a.current:after{
      content: " ";
      width: 0px;
      height: 0px;
      border-style: solid;
      border-width: 5px 7.5px 0 7.5px;
      border-color: #01afb8 transparent transparent transparent;
      position: absolute;
      bottom: -5px;
      left: 50%;
      margin-left: -7.5px;
    }
    ul.tabContent{
      padding: 5px 5px 20px;
    }
    ul.tabContent > li{}
    ul.tabContent2 > li:not(:first-of-type){
        display: none;
    }
    ul.tabContent li .textEditor{
      margin: 0;
    }
    .tab2{
        border-top: 4px double #2f8a8f;
        border-bottom: 4px double #2f8a8f;
        text-align: center;
    }
    .tab2 a {
        padding: 10px 15px;
        color: #2f8a8f;
        font-size: 16px;
        display: inline-block;
        background: transparent;
    }
    @media (max-width: 580px){
        .tab2 a {
            font-size: 14px;
            padding: 8px 10px;
        }
    }
    .tab2 a:not(:first-of-type) {
        border-left: 1px solid rgba(47, 138, 143, .3);
    }
    .tab2 a:hover,
    .tab2 a.current,
    .tab2:hover a.current:hover {
        color: #fff;
        background: #2f8a8f;
    }
    .tab2:hover a.current {
        color: #2f8a8f;
        background: transparent;
    }
    .tab2 a.current:after {
        display: none;
    }


    .tab3{
      display: block;
        border-bottom: 3px solid rgba(47, 138, 143, .3);
    }
    .tab3 a {
      width: auto;
        padding: 10px 15px;
        color: #232323;
        font-size: 15px;
        display: inline-block;
        background: transparent;
    }
    @media (min-width: 641px){
      .tab3 a {
        min-width: 130px;
      }
    }
    @media (max-width: 580px){
        .tab3 a {
            font-size: 14px;
            padding: 8px 10px;
        }
    }
    .tab3 a:hover,
    .tab3 a.current{
        background: transparent;
        color: #232323;
    }
    .tab3 a.current{
        border-bottom-color: #2f8a8f;
    }
    .tab3 a.current:after {
        content: " ";
        width: 100%;
        height: 5px;
        border: 0;
        background: #01afb8;
        position: absolute;
        bottom: -3px;
        left: 0;
        margin-left: 0;
    }

  /*相簿*/
    ul.side_album{
      padding: 0;
      text-align: center;
      margin: 0 -5px;
    }
    ul.side_album li{
      width: 100%;
      padding: 10px 5px;
      display: inline-block;
    }
    ul.side_album li a{
      display: block;
      border: 5px solid #eee;
      position: relative;
    }
    ul.side_album li a::before{
      content: '';
      width: 100%;
      height: 100%;
      background: rgba(1, 175, 184, 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: '';
      width: 20px;
      height: 20px;
      background: url(../images/add.png) no-repeat;
      position: absolute;
      top: calc(50% - 10px);
      left: calc(50% - 10px);
      opacity: 0;
    }
    ul.side_album li:hover a::after{
      opacity: 1;
    }
    ul.side_album li a img{
      display: block;
      width: 100%;
    }

  /*相簿2*/
    ul.side_album_left{
      padding: 0;
      text-align: center;
      margin: 0 -5px;
    }
    ul.side_album_left li{
      width: 100%;
      padding: 10px 5px;
      display: inline-block;
    }
    ul.side_album_left li a{
      display: block;
      border: 5px solid #eee;
      position: relative;
    }
    ul.side_album_left li a::before{
      content: '';
      width: 100%;
      height: 100%;
      background: rgba(1, 175, 184, 0.75);
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
    }
    ul.side_album_left li:hover a::before{
      opacity: 1;
    }
    ul.side_album_left li a::after{
      content: '';
      width: 20px;
      height: 20px;
      background: url(../images/add.png) no-repeat;
      position: absolute;
      top: calc(50% - 10px);
      left: calc(50% - 10px);
      opacity: 0;
    }
    ul.side_album_left li:hover a::after{
      opacity: 1;
    }
    ul.side_album_left li a img{
      display: block;
      width: 100%;
    }

  /*標籤*/
    .tagBox{
      padding: 20px 0 30px;
      color: #555;
    }
    .tagBox b{
      display: inline-block;
      margin-right:10px;
      margin-bottom: 5px;
      text-transform: uppercase;
    }
    .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: 18px;
      font-family: 'Scheherazade', serif;
      padding: 0 20px;
      color: #bbb;
      height: 45px;
      line-height: 45px;
      letter-spacing: 0.5px;
      background: transparent;
      border: 1px solid #f4f4f4;
      box-shadow: 0 10px 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: #ff6574;
      border: 1px solid transparent;
    }
    .tagBox ul li a.current:before{
      content: "\f00d";
      font-family: 'FontAwesome';
      font-size: 12px;
      margin-right: 5px;
    }
    .tagBox ul li a::after{
      content: '';
      width: 100%;
      height: 100%;
      background: linear-gradient(-36deg, rgba(249, 145, 97, 0) 10%, rgba(249, 145, 97, 1) 100%);
      border-radius: 25px;
      position: absolute;
      top: 0;
      left: 0;
      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;
    }
    .tagBox ul li a:hover::after{
      opacity: 1;
      -webkit-transition: all 0.8s 0.1s ease;
      -moz-transition: all 0.8s 0.1s ease;
      -o-transition: all 0.8s 0.1s ease;
      transition: all 0.8s 0.1s ease;
    }

  /*標籤2*/
    .tagsBox{
      padding: 10px 0 0;
      text-align: center;
      display: none;
    }
    .tagsBox a{
      display: inline-block;
      background: #01afb8;
      color: #fff;
      font-size: 15px;
      font-weight: 400;
      letter-spacing: 1px;
      line-height: 1.4;
      position: relative;
      padding: 0 6px;
      margin: 0 8px 5px 0;
    }
    .tagsBox a.current,
    .tagsBox a:hover{
      background: #80deea;
    }
    /* .tagsBox a::before{
      content: '#';
      padding-right: 6px;
    } */
    .tagsBox.tagsBox2 a{
      background: #eee;
      color: #000;
      font-size: 14px;
      font-weight: 400;
      padding: 0 3px;
      margin: 0;
    }
    .tagsBox.tagsBox2 a:hover{
      background: #01afb8;
      color: #fff;
    }
    .tagsBox.tagsBox2 a:hover::before{
      color: #fff;
    }

  /*頁碼*/
    .pageBox{
      width: 100%;
      margin: 15px 0 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: 30px;
        height: 30px;
        line-height: 30px;
        margin: 0 4px;
        text-align: center;
        color: #808080;
        font-size: 13px;
        font-weight: bold;
        border-radius: 5px;
        border: 0;
        box-shadow: 0 2px 5px rgba(0,0,0,.2);
        background-color: #fbfbfb;
    }
    .pageBox a:hover, .pageBox a.current{
        background-color: #01c5e2;
        color: #fff;
        box-shadow: 0 5px 8px rgba(0,0,0,.3);
    }
    .pageBox a i{
        font-size: 19px;
        line-height: 30px;
    }
    .pageBox .btn{
      background-color: #eee;
      font-size: 15px;
    }

  /*textEditor*/
    .mainArea.ins .textEditor{
      padding-top: 40px;
      color: #444;
      font-size: 15px;
      font-family: 'Calibri', 'Noto Sans TC';
      font-weight: 400;
      letter-spacing: 0.8px;
      line-height: 26px;
      /*text-align: justify;*/
    }
    .mainArea.ins .textEditor p{
      color: #444;
    }
    .textEditor a{
      color: #01afb8;
      display: inline-block;
      position: relative;
    }
    .textEditor a:hover{
      text-decoration: underline;
    }
    .mainArea.ins .textEditor img{
      display: inline-block;
    }
    .mainArea.ins .textEditor .float_img{
      float: left;
      margin: 30px;
    }
    .mainArea.ins .textEditor .float_img.left{
      margin: 0 40px 10px 0;
    }
    .mainArea.ins .textEditor .float_img.right{
      margin: 0 0 10px 40px;
    }
    .mainArea.ins .textEditor .title{
      color: #e0ac55;
      font-size: 18px;
      letter-spacing: 1px;
      margin: 20px 0 10px;
    }
    .mainArea .textEditor table{
      width: 100%;
    }
    .mainArea .textEditor table th{
      background: #01afb8;
      letter-spacing: 2px;
      font-weight: normal;
      text-align: left;
      padding: 5px 8px;
    }
    .mainArea .textEditor table td{
      padding: 5px 8px;
    }
    .mainArea .contentBox .special_table{
      color: #222;
    }
    .mainArea .contentBox .special_table td,
    .mainArea .contentBox .special_table th{
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      border: 0;
    }
    .mainArea .contentBox .special_table th{
      margin: 10px 0;
    }
    .mainArea .contentBox .special_table .price{
      min-width: 50px;
    }
    .mainArea .contentBox .special_table td .sub{
      width: calc(100% - 50px);
      color: #888;
      font-size: 14px;
    }
    .mainArea .contentBox .special_table td .dots{
      height: 15px;
      margin: 0 15px;
      -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
      flex-grow: 1;
      background: url(../images/dash.png) center left repeat-x;
    }
    .mainArea .contentBox .special_table .menu_hot{
      display: inline-block;
      color: red;
      text-shadow: -1px 2px 2px rgba(255, 0, 0, 0.5);
      margin-right: 8px;
      -webkit-transform: rotate(-8deg);
      -ms-transform: rotate(-8deg);
      transform: rotate(-8deg);
      -webkit-animation: menu_hot 1.2s both cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
              animation: menu_hot 1.2s both cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    }
    @-webkit-keyframes menu_hot {
        0%,100% {
          opacity: 0;
        }
        20%,80% {
          opacity: 1;
        }
    }
    @keyframes menu_hot {
        0%,100% {
          opacity: 0;
        }
        20%,80% {
          opacity: 1;
        }
    }
    .mainArea.ins .textEditor ul{
      display: block;
    }
    .textEditor sup{
      font-size: small;
      vertical-align: super;
    }

  /*slideUnLock*/
    .captchaArea {
      display: inline-block;
      position: relative;
      width: 250px;
      height: 45px;
      /*margin-right: 20px;*/
      background-color: #000;
      vertical-align: top;
    }
    .captchaArea.unlocking .sliderBtn {
      transition: none;
    }
    .captchaArea .note {
      font-size: 18px;
      font-weight: 500;
      text-align: center;
      text-transform: uppercase;
      color: #fff;
      letter-spacing: 1px;
      line-height: 45px;
      padding-left: 20px;
      position: relative;
      pointer-events: none;
      z-index: 1;
    }
    .sliderBtn {
      position: absolute;
      top: 0;
      left: 0;
      z-index: 2;
      width: 50px;
      height: inherit;
      border: none;
      outline: none;
      background-color: #01afb8;
      cursor: pointer;
      box-sizing: border-box;
      transition: all .3s linear;
    }
    .sliderBtn::before {
      content: '\f105';
      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: 24px;
      font-family: FontAwesome;
      pointer-events: none;
    }
  
  table.breakpoint > tbody > tr > td.expand {
    cursor: pointer;
    background: url("../images/plus.png/index.html") no-repeat 5px center;
    padding-left: 40px;
  }
  .textEditor .footable.breakpoint > tbody > tr > td > span.footable-toggle{
    vertical-align: top;
    font-size: 12px;
    color: #222;
  }
  .dec_title{
    width: 1920px;
    color: #f4f4f4;
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    position: absolute;
    top: 110px;
    left: calc(50% + 50px);
    opacity: 0.3;
    z-index: -1;
  }
  .dec_title span{
    display: block;
    margin-left: 400px;
  }

/**********響應式**********/
/* @media (min-width: 1251px){
    header {
      padding: 0 30px;
    }
} */
/* @media (min-width: 1181px) and (max-width: 1250px){
    header {
      padding: 0 15px;
    }
} */
@media (max-width: 1650px){
    ul.menu li > a{
      padding: 25px 5px;
    }
}
/* @media (max-width: 1500px){
    header .logo {
        width: 250px;
    }
    header .rightBox {
        width: calc(100% - 250px);
    }
    ul.menu li > a{
      padding: 25px 5px;
    }
} */
  @media (max-width: 1400px){
    ul.menu li > a{
      padding: 25px 3px;
      /* font-size: 14px; */
    }
  }
/* @media (max-width: 1300px){
    header .logo {
        width: 200px;
    }
    header .rightBox {
        width: calc(100% - 200px);
    }
    ul.menu li > a{
      padding: 25px 2px;
    }
} */
/*@media (max-width: 1650px){
    ul.menu li > a{
      padding: 25px 10px;
    }
    ul.menu li > a::before{
      width: calc(100% - 40px);
      left: 20px;
    }
}
  @media (max-width: 1300px){
    header .wrap{
      max-width: 100%;
      padding: 0 30px;
    }
    ul.menu li > a{
      padding: 25px 6px;
    }
  }*/
  /*@media (max-width: 1650px){
    header .logo{
      width: 300px;
    }
    header .rightBox{
      width: calc(100% - 300px);
    }
    ul.menu li > a{
      padding: 30px 10px;
    }
    ul.menu li > a::before{
      width: calc(100% - 40px);
      left: 20px;
    }
    ul.menu li > a::after{
      left: -3px;
    }
    header .share{
      margin-left: 10px;
    }
  }*/
  /*@media (max-width: 1590px){
    header .wrap{
      padding: 0 20px;
    }
    header .logo{
      width: 260px;
    }
    header .rightBox{
      width: calc(100% - 260px);
    }
    ul.menu li > a{
      padding: 25px 10px;
    }
    ul.menu li > a::before{
      width: calc(100% - 28px);
      left: 14px;
    }
    ul.menu li > a::after{
      left: -8px;
    }
    header .share{
      margin-left: 8px;
    }
  }*/
  @media (max-width: 1550px){
    .mainArea .topBtnBox{
      max-width: 100%;
      padding: 50px 40px;
    }
    .mainArea .topBtnBox .titleBox em{
      font-size: 45px;
    }

    .bannerBox ul li > .bannerTxt{
      max-width: 100%;
      padding: 0 50px;
    }
  }
  /*@media (max-width: 1420px){
    header .logo{
      width: 250px;
    }
    header .rightBox{
      width: calc(100% - 250px);
    }
    ul.menu li > a{
      padding: 25px 5px;
    }
    ul.menu li > a::before{
      width: calc(100% - 20px);
      left: 10px;
    }
    ul.menu li > a::after{
      left: -11px;
    }
    header .share{
      margin-left: 10px;
    }
  }*/
  @media (max-width: 1400px){
    .goTopBox{
      bottom: 50px;
      right: 50px;
    }
  }
  @media (max-width: 1300px){
    .mainArea .topBtnBox .titleBox::before{
      right: -50px;
    }
    .mainArea.ins .wrap.big{
      max-width: 100%;
      padding: 0 50px;
    }

    .bannerBox ul li > .bannerTxt em{
      font-size: 50px;
    }
    .bannerBox ul li > .bannerTxt em strong{
      font-size: 70px;
    }
    .bannerBox ul li > .bannerTxt h3{
      font-size: 32px;
    }
    /* .menuBox {
        padding-left: 10px;
        padding-right: 10px;
    } */
  }
  /*@media (max-width: 1260px){
    header .logo {
        width: 200px;
    }
    header .rightBox {
        width: calc(100% - 200px);
    }
    ul.menu li > a {
        padding: 25px 3px;
    }
  }*/
  /* @media (max-width: 1240px){
    header .share{
        width: 40px;
        font-size: 0;
        border-radius: 50%;
        padding: 0;
        margin-left: 10px;
    }
    header .share span::before {
        left: 3px;
    }
    header .share.share_fb a{
        font-size: 0;
    }
    header .share.share_fb a i{
        display: inline-block;
        font-size: 20px;
        line-height: 40px;
    }
  } */
  @media (max-width: 1180px){
    .outerWrap{
      padding-top: 55px;
    }
    /* header,
    .goTopBox{
      display: none;
    } */
    .mainArea.ins{
      padding: 60px 0 80px;
    }
    .wrap{
      max-width: 100%;
      padding: 0 30px;
    }

    .mainArea .topBtnBox{
      padding: 0 0 30px;
      margin: 0 auto;
    }
    .bannerBox ul li > .bannerTxt{      
      -ms-transform: translate(-50%,-50%);
      -moz-transform: translate(-50%,-50%);
      -webkit-transform: translate(-50%,-50%);
      -o-transform: translate(-50%,-50%);
      transform: translate(-50%,-50%);
    }

    /*手機menu*/
      .m_menu{
        display: block;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
      }
      .m_menu .mask{
        background: rgba(255, 255, 255, 0.98);
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 10;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 1.2s ease;
        -moz-transition: all 1.2s ease;
        -o-transition: all 1.2s ease;
        transition: all 1.2s ease;
      }
      .m_menu.active .mask{
        background: rgba(1, 175, 184, 0.98);
        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 .controlBox{
        height: 55px;
        position: relative;
        background: #fff;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.15);
        -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.active .controlBox{
        background: transparent;
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
      }

      /*選單按鈕*/
        .m_menu .controlBox a.main{
          display: block;
          margin: 0;
          width: 55px;
          height: 55px; 
          color: #fff;
          background: #01afb8;
          text-align: center;
          position: absolute;
          top: 0;
          left: 0;
          z-index: 99;
          -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.active .controlBox a.main{
          background: transparent;
        }
        .m_menu .controlBox a.main .mm{
          width: 25px;
          height: 2px;
          margin-top: 25px;
          background: #fff;
          position: relative;
          display: inline-block;
          -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.active .controlBox a.main .mm{
          background: transparent;
        }
        .m_menu .controlBox a.main .mm::before,
        .m_menu .controlBox a.main .mm::after{
          content: '';
          width: 25px;
          height: 2px;
          background: #fff;
          position: absolute;
          top: -8px;
          left: 0;
          -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 .controlBox a.main .mm::before{
          top: -8px;
        } 
        .m_menu .controlBox a.main .mm::after{
          top: 10px;
        }
        .m_menu.active .controlBox a.main .mm::before,
        .m_menu.active .controlBox a.main .mm::after{
          background: #222;
          top: 0;
          width: 30px;
          left: -4px;
        }
        .m_menu.active .controlBox a.main .mm::before{
          -ms-transform: rotate(45deg);
          -moz-transform: rotate(45deg);
          -webkit-transform: rotate(45deg);
          -o-transform: rotate(45deg);
          transform: rotate(45deg);
        }
        .m_menu.active .controlBox a.main .mm::after{
          -ms-transform: rotate(-45deg);
          -moz-transform: rotate(-45deg);
          -webkit-transform: rotate(-45deg);
          -o-transform: rotate(-45deg);
          transform: rotate(-45deg);
        }

      .m_menu .controlBox .m_logo{
        text-align: center;
        opacity: 1;
        -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.active .controlBox .m_logo{
        opacity: 0;
        visibility: hidden;
      }
      .m_menu .controlBox .m_logo img{
        display: inline-block;
        height: 30px;
        margin-top: 12px;
        margin-left: 0px;
      }

      .m_menu .hideBox{
        width: 100%;
        padding: 80px 0 40px 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;  
        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 p.sp{
        display: none;
        padding: 10px;
        font-size: 14px;
        color: #fff;
        text-align: center;
      }
      .m_menu .mfun{
        padding: 30px 20px 10px;
        text-align: center;
        position: relative;
        z-index: 100;
      }
      .m_menu .mfun a{
        display: inline-block;
        color: #fff;
        width: 50px;
        height: 50px;
        line-height: 50px;
        background: #000;
        border: 1px solid #000;
        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 .mfun a b{
        display: none;
      }
      .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.1s;
        -moz-transition-delay: 0.1s;
        -o-transition-delay: 0.1s;
        transition-delay: 0.1s;
      }
      .m_menu.active .mfun a:nth-of-type(2){
        -webkit-transition-delay: 0.2s;
        -moz-transition-delay: 0.2s;
        -o-transition-delay: 0.2s;
        transition-delay: 0.2s;
      }
      .m_menu.active .mfun a:nth-of-type(3){
        -webkit-transition-delay: 0.3s;
        -moz-transition-delay: 0.3s;
        -o-transition-delay: 0.3s;
        transition-delay: 0.3s;
      }
      .m_menu.active .mfun a:nth-of-type(4){
        -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(5){
        -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(6){
        -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(7){
        -webkit-transition-delay: 0.55s;
        -moz-transition-delay: 0.55s;
        -o-transition-delay: 0.55s;
        transition-delay: 0.55s;
      }
      .m_menu .mfun a:hover{}

      .m_menu ul.nav{
        margin-bottom: 50px;
        /*opacity: 0;
        visibility: hidden;*/
      }
      .m_menu.active ul.nav{
        /*opacity: 1;
        visibility: visible;*/
      }
      .m_menu ul.nav li{
        text-align: center;
      }
      .m_menu ul.nav li:hover{}
      .m_menu ul.nav li a{
        position: relative;
        padding: 12px 35px;
        display: inline-block;
        font-size: 16px;
        color: #fff;
        letter-spacing: 2px;
        text-align: center; 
      }
      .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 .submenu_li{
        display: inline-block;
      }
      .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: 400;
        display: inline-block;
      }
      .m_menu ul.nav li .submenu a:hover{
        background: #f67e2a;
        color: #fff;
      }
      .m_menu ul.nav li .submenu .submenu_li.dropDown > a{
        display: none;
      }
      .m_menu ul.nav li.course .submenu .submenu_li.dropDown > a{
        display: block;
      }
      .m_menu ul.nav li.course .submenu .submenu2{
        display: none;
      }
      
    /*手機down*/
      .m_menu ul.down{
        border-top: 2px solid #b3b3b3;
        background: #667c7d;
        position: fixed;
        bottom: 0;
        width: 100%;
        height: 60px;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        -ms-align-items: center;
        align-items: center;
      }
      .m_menu .down li{
        flex: 1;
        position: relative;
        padding: 10px 0;
        border-left: 1px solid rgba(255, 255, 255, 0.3);
        text-align: center;
      }
      .m_menu .down a{
          display: block;
          font-size: 20px;
          color: #fff;
          line-height: 1;
      }
      .m_menu .down a.btnCart{
          position: relative;
      }
      .m_menu .down a.btnCart .cartQuantity{
        position: absolute;
        top: 0;
        left: calc(50% + 18px);
        width: 20px;
        height: 20px;
        line-height: 20px;
        border-radius: 50%;
        font-size: 12px;
        background-color: #d89445;
      }
      .m_menu .down a span{
          display: block;
          font-size: 12px;
          line-height: 18px;
      }
      .m_menu .down a.goTop{
          font-size: 24px;
          font-family: 'Hind Siliguri', sans-serif;
          font-weight: 900;
          line-height: 0.8;
      }
      .m_menu .down .subLink{
            position: absolute;
            bottom: 100%;
            left: 0;
            display: none;
            width: 100%;
            box-shadow: 0 0 40px rgba(0,0,0,.15);
      }
      .m_menu .down .subLink a{
            padding: 10px 0;
            font-size: 14px;
            color: #333;
            letter-spacing: 0;
            background-color: #fff;
            border-bottom: 1px solid #dedede;
      }
      .m_menu .down .subLink a:hover{
          color: #fff;
            background-color: #01afb8;
      }
  }
  @media (max-width: 1100px){
    /*banner dotsBox*/
      .bannerBox .dotsBox{
        bottom: 35px;
        right: 30px;
      }

    footer .linkBox{
      /* display: none; */
      width: 100%;
      margin-bottom: 30px;
    }
    footer .otherBox{
      width: 40%;
    }
    footer .contactBox{
      width: 60%;
    }
    footer .linkBox > h3::before,
    footer .contactBox > h3::before,
    footer .otherBox > h3::before{
      width: 100%;
      left: 0;
    }

    .mainArea.ins{
      padding: 40px 0 80px;
    }
    .mainArea.ins .wrap.big{
      padding: 0 30px;
    }
    .mainArea .topBtnBox{
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      -o-flex-wrap: wrap;
      flex-wrap: wrap;
      padding: 0 0 10px;
    }
    .mainArea .topBtnBox .titleBox{
      width: 100%;
      padding: 0;
      text-align: center;
    }
    .mainArea .topBtnBox .titleBox em{
      padding-top: 48px;
    }
    .mainArea .topBtnBox .titleBox em::before{
      top: 0;
      left: calc(50% - 20px);
    }
    .mainArea .topBtnBox .backBox{
      width: 100%;
      text-align: right;
      padding-top: 20px;
      padding-right: 30px;
      display: none;
    }
  }
  @media (max-width: 960px){
    .dec_title{
      display: none;
    }

  }
  @media (max-width: 900px){
    .bannerBox ul li > .bannerTxt em,
    .bannerBox ul li > .bannerTxt em strong{
      font-size: 50px;
    }
    .bannerBox ul li > .bannerTxt em strong{
      display: inline-block;
    }
    .bannerBox ul li > .bannerTxt h3{
      font-size: 30px;
    }

    /*classLink*/
      .classBox{
        background: transparent;
        padding: 0;
        max-width: 100%;
        text-align: left;
      }
      ul.classLink{
        display: none;
      }
      .m_classLink{
        display: block;
        background: transparent;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        margin: 10px 0 30px;
      }
      .m_classLink a.main{
        display: block;
        margin: 0 auto;
        font-size: 16px;   
        color: #fff;
        letter-spacing: 1px;
        padding: 12px 40px 12px 30px;
        background: #000;
        border: 1px solid rgba(204, 204, 204, 0.3);
        position: relative;
      }
      .m_classLink a.main::before{
        content: '';
        width: 10px;
        height: 1px;
        background: #f67e2a;
        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 #eee;
        padding: 0;
        list-style: none;
        display: none;
        width: 100%;
        position: relative;
        left: 0;
        top: 100%;
        z-index: 999;
      }
      .m_classLink ul li{
        padding: 0;
        border-bottom: 1px solid #eee;
      }
      .m_classLink ul li a{
        color: #222;
        display: block;
        letter-spacing: 1px;
        padding: 8px 8px 8px 40px;
        background: #fff;
      }
      .m_classLink ul li:hover > a{
        color: #fff;
        background: #01afb8;
      }
      .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{
        background: #f67e2a;
        color: #fff;
      }
      .m_classLink ul li dl dt a::before{
        content: '-';
        color: #666;
        font-size: 16px;
        padding-right: 10px;
      }
  }
  @media (max-width: 768px){
    .wrap{
      padding: 0 20px;
    }
    .mainArea.ins{
      padding: 40px 0 60px;
    }
    footer{
      padding: 60px 0 70px;
      overflow: hidden;
    }
    footer::before, footer::after{
      display: none;
    }
    footer .wrap{
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      -o-flex-wrap: wrap;
      flex-wrap: wrap;
    }
    footer .otherBox{
      width: 100%;
      margin-top: 30px;
    }
    footer .contactBox{
      width: 100%;
    }
  }
  @media (max-width: 640px){
    .featureArea .titleBox em{
      font-size: 40px;
    }
    .m_menu .controlBox .m_logo{
      text-align: left;
    }
    .m_menu .controlBox .m_logo img{
      margin-left: 90px;
    }

    .txt_oneLine{
      overflow: visible;
      text-overflow: clip;
      white-space: unset;
    }

    .mainArea .contentBox .articleTitle{
      font-size: 22px;
    }
    .mainArea.ins .wrap.big{
      padding: 0 20px;
    }

    .bannerBox ul li > .bannerTxt{
      padding: 0 30px;
    }
    .bannerBox ul li > .bannerTxt em,
    .bannerBox ul li > .bannerTxt em strong{
      font-size: 40px;
    }
    .bannerBox ul li > .bannerTxt h3{
      font-size: 26px;
      line-height: 1.4;
    }
  }
  @media (max-width: 550px){
      .m_menu ul.nav li .submenu{
        padding: 0 10px 10px;
      }
  }
  @media (max-width: 480px){
    .featureArea .titleBox em{
      font-size: 32px;
    }

      footer .contactBox .info span{
        width: auto;
        padding-right: 10px;
      }
      .m_menu .controlBox .m_logo img{
        height: 32px;
        /*margin-top: 18px;*/
      }
      .mainArea .contentBox{
        padding: 25px 0 0;
      }

    .bannerBox ul li > .bannerTxt{
      padding: 0 20px;
    }
    .bannerBox ul li > .bannerTxt em{
      display: none;
    }
    .bannerBox ul li > .bannerTxt h3{
      font-size: 20px;
      line-height: 1.4;
    }
    .bannerBox ul li > .bannerTxt p{
      font-size: 15px;
      line-height: 1.4;
      margin-top: 10px;
    }
    .bannerBox .dotsBox{
      bottom: 20px;
      right: 50%;
      -ms-transform: translate(50%,0);
      -moz-transform: translate(50%,0);
      -webkit-transform: translate(50%,0);
      -o-transform: translate(50%,0);
      transform: translate(50%,0);
    }
  }
  @media (max-width: 360px){
      .m_menu .controlBox .m_logo img{
        height: 26px;
        margin-top: 15px;
      }
  }

/***Hover效果1: 放大淡出***/
.imh_opacity {
  background-color: #000;
  overflow: hidden;
}

.imh_opacity img {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.imh_opacity:hover img {
  opacity: 0.8;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

/***Hover效果1: 放大淡出Detail***/
  .imh_detail{
    position: relative;
  }
  .imh_detail a::before{
    content: "View More";
    width: 134px;
    height: 134px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 50%;
    letter-spacing: 1.5px;
    line-height: 170px;
    text-transform: uppercase;
    text-align: center;
    position: absolute;
    top: calc(50% - 75px);
    left: calc(50% - 67px);
    z-index: 99;
    opacity: 0;
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
  }
  .imh_detail:hover a:before{
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  .imh_detail a::after{
    content: '';
    width: 30px;
    height: 30px;
    background: url(../images/detail.png/index.html) no-repeat;
    position: absolute;
    top: calc(50% - 20px);
    left: calc(50% - 15px);
    opacity: 0;
    z-index: 99;
    -webkit-transform: scale(0.2);
    -ms-transform: scale(0.2);
    transform: scale(0.2);
  }
  .imh_detail:hover a::after{
    top: calc(50% - 40px);
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

/***Hover效果1: 放大淡出zoom***/
.imh_zoom {
  position: relative;
  overflow: hidden;
  border: 1px solid #80808030;
}

.imh_zoom img {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-backface-visibility: hidden;
}

.imh_zoom:hover img {
  opacity: 1;
  -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;
  }

/****審合狀態****/
  .statusPass,.statusChecking,.statusFail,.statusPass1st, .statusDraft, .statusCancel {
    padding: 5px 10px;
    border-radius: 3px;
    color: #fff;
  }
  @media (max-width:640px) {
    .statusPass,.statusChecking,.statusFail,.statusPass1st, .statusDraft, .statusCancel {
      padding: 3px 5px;
      font-size: 12px;
    }
  }
  .statusPass {
    background-color: #1fc350;
  }
  .statusChecking {
    background-color: #ecb44a;
  }
  .statusFail {
    background-color: #c31f1f;
  }
  .statusPass1st {
    background-color: #01afb8;
  }
  .statusDraft, .statusCancel {
    background-color: #999;
  }
  .checkPass {
    color: #1fc350;
  }
  .nonCheck {
    border-bottom: 1px solid #1f74c3;
    color: #1f74c3;
  }
  .nonCheck:hover {
    border-bottom-color: rgba(31, 116, 195, .3);
  }
  .checkFail {
    color: #c31f1f;
  }
