@charset "UTF-8";
/* CSS Document */
@import url(public/css/reset.css);
@import url(public/css/font-awesome-4.7.0/font-awesome.min.css);
@import url(public/css/rwdgrid.css);
@import url(public/css/textEditor.css);
@import url(public/css/contentbuilder.css);
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;700&family=Saira:wght@400;500;600;700&display=swap");
.mClassLink > ul, .mClassLink .main, .classRowBox > ul a {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.pageBox.number a.firstBtn::before, .pageBox.number a.firstBtn::after, .pageBox.number a.lastBtn::before, .pageBox.number a.lastBtn::after, .pageBox a.prevBtn::before, .pageBox a.nextBtn::before, .classColumnBox, .classRowBox, .loadingArea {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

@-webkit-keyframes btnArrow {
    0% {
        right: 25px;
    }
    50% {
        right: 35px;
    }
    100% {
        right: 25px;
    }
}

@keyframes btnArrow {
    0% {
        right: 25px;
    }
    50% {
        right: 35px;
    }
    100% {
        right: 25px;
    }
}
@-webkit-keyframes btnArrow2 {
    0% {
        left: 0px;
    }
    50% {
        left: 10px;
    }
    100% {
        left: 0px;
    }
}
@keyframes btnArrow2 {
    0% {
        left: 0px;
    }
    50% {
        left: 10px;
    }
    100% {
        left: 0px;
    }
}
body {
    background-color: #fff;
    font-family: "Noto Sans TC", Helvetica, Arial, "微軟正黑體", Heiti TC, "メイリオ", sans-serif;
    font-size: 15px;
}
body.overflow, body.popwinOverflow, body.loadingOverflow {
    overflow: hidden;
}

address {
    font-style: normal;
}

a {
    color: #000;
    cursor: pointer;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
a:hover {
    color: #000;
}

div.titan {
    display: none;
}

[class*=col-] {
    float: left;
}

.col-1 {
    width: 100%;
}
.col-2 {
    width: 50%;
}
.col-3 {
    width: 33.33%;
}
.col-4 {
    width: 25%;
}
.col-5 {
    width: 20%;
}
@media (max-width: 480px) {
    .col-1, .col-2, .col-3, .col-4, .col-5 {
        float: none;
        width: 100%;
    }
}

.btn_color1 {
    color: #fff;
    background-color: #191919;
}
.btn_color1:hover {
    background-color: #555;
}
.btn_color2 {
    color: #fff;
    background-color: #A0A0A0;
}
.btn_color2:hover {
    background-color: #999;
}

input[type=text],
input[type=password],
textarea,
button {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: transparent;
    border: none;
    border-radius: 0;
    font-size: 16px;
    outline: none;
    padding: 0;
    margin: 0;
}

textarea {
    resize: vertical;
}

.outerWrap {
    position: relative;
    padding-top: 70px;
}
@media (max-width: 1180px) {
    .outerWrap {
        padding-top: 65px;
        padding-bottom: calc(0px + env(safe-area-inset-bottom));
    }
}

.wrap {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/*module*/
.moduleBox {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1005;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 100%;
    padding-left: 20px;
    padding-right: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition-property: top, opacity, visibility;
    transition-property: top, opacity, visibility;
    -webkit-transition-duration: 0.5s;
            transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-in-out;
            transition-timing-function: ease-in-out;
}
.moduleBox.show {
    opacity: 1;
    visibility: visible;
}
.moduleBox.show .moduleWrap {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
}
.moduleBox .moduleWrap {
    position: relative;
    width: 100%;
    max-width: 960px;
    background-color: #fff;
    pointer-events: auto;
    padding-top: 60px;
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.moduleBox .moduleContent {
    width: 100%;
    max-height: calc(90vh - 50px);
    overflow-y: auto;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
}
.moduleBox .moduleClose {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: none;
    background-color: #191919;
    border: none;
    cursor: pointer;
}
.moduleBox .moduleClose::before, .moduleBox .moduleClose::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -15px;
    margin-top: -0.5px;
    width: 30px;
    height: 1px;
    background-color: #fff;
}
.moduleBox .moduleClose::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}
.moduleBox .moduleClose::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

.moduleMask {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1003;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.moduleMask.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/*購物車*/
.cartArea .moduleWrap {
    max-width: 480px;
}
.cartArea .countBox {
    margin-top: 10px;
    font-size: 13px;
    color: #333;
    text-align: center;
}
.cartArea .countBox b {
    font-size: 18px;
    color: #7ea830;
}
.cartArea .countBox b em {
    font-weight: 400;
    font-size: 12px;
    color: #7ea830;
}
.cartArea .countBox a.btn_pay {
    display: inline-block;
    padding: 7px 15px;
    font-size: 13px;
    color: #fff;
}
.cartArea .goto_pay_btn {
    margin-left: 15px;
}
.cartArea .cartNote {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-bottom: 20px;
}
.cartArea .cartNote .en {
    font-size: 28px;
    letter-spacing: 0.01em;
    color: #1e1e1e;
    text-transform: uppercase;
}
.cartArea .cartNote .en span {
    color: #191919;
}
.cartArea .cartNote .text {
    font-size: 14px;
    letter-spacing: 0.05em;
    color: #373737;
}
.cartArea .cartNote .text b {
    padding-left: 4px;
    padding-right: 4px;
    font-weight: 400;
    font-size: 18px;
    color: #191919;
}
.cartArea .cart {
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-top: 2px solid #191919;
    border-bottom: 2px solid #b4b4b4;
}
.cartArea .buyList li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.cartArea .buyList li:not(:first-child) {
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid #d5d5d5;
}
.cartArea .buyList .Img {
    width: 90px;
}
.cartArea .buyList .Img img {
    display: block;
    width: 100%;
}
.cartArea .buyList .Txt {
    position: relative;
    width: calc(100% - 90px);
    padding-left: 15px;
    padding-right: 50px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 14px;
}
.cartArea .buyList h3 {
    width: 100%;
    margin-bottom: 3px;
}
.cartArea .buyList h3 a {
    display: block;
    color: #000;
    font-size: 15px;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cartArea .buyList .spec {
    color: #6a6a6a;
    margin-bottom: 3px;
}
.cartArea .buyList .del {
    position: absolute;
    right: 0;
    top: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 35px;
    height: 35px;
    border: none;
    background-color: #eee;
    border-radius: 50%;
    color: #5f5f5f;
    cursor: pointer;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.cartArea .buyList .del:hover {
    background-color: #191919;
    color: #fff;
}
.cartArea .buyList .del svg {
    width: 15px;
    height: 18px;
}

/*訂單查詢*/
.orderCheckArea .moduleWrap {
    max-width: 360px;
}
.orderCheckArea h4 {
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 16px;
    font-family: "微軟正黑體", "新細明體", sans-serif;
    color: #222;
    text-align: left;
}
.orderCheckArea input[type=text], .orderCheckArea input[type=password] {
    width: 100%;
    height: 40px;
    margin-bottom: 10px;
    padding: 5px;
    border: 2px solid #ccc;
}
.orderCheckArea a.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 13px;
    color: #fff;
}

/*會員登入*/
.loginArea .moduleWrap {
    max-width: 360px;
}
.loginArea .forgetCheck,
.loginArea .resendCheck {
    display: none;
}
.loginArea input[type=text], .loginArea input[type=password] {
    display: block;
    width: 100%;
    height: 30px;
    padding: 5px;
    margin-bottom: 7px;
    border: 1px solid #ccc;
}
.loginArea .btn {
    /*送出按鈕*/
    margin-top: 15px;
    text-align: center;
}
.loginArea .btn a {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 3px;
    font-size: 13px;
    color: #fff;
}
.loginArea .forget {
    clear: both;
    margin-top: 20px;
    font-size: 15px;
    color: #2f2f2f;
}
.loginArea .forget span {
    font-size: 13px;
    color: #e1e1e1;
}
.loginArea .forget strong a {
    font-weight: 400;
    color: #f93;
    text-decoration: underline;
}
.loginArea .forget b a {
    font-weight: 400;
    font-size: 18px;
    color: #09f;
    text-decoration: underline;
}
.loginArea .forgetCheck {
    display: none;
}
.loginArea .forgetCheck a.btn_relog {
    display: block;
    margin-bottom: 15px;
    font-size: 15px;
    color: #09f;
    text-align: center;
    text-decoration: underline;
}

/*搜尋*/
.searchArea .moduleWrap {
    max-width: 480px;
}
.searchArea .searchBox {
    margin: 30px 0;
    position: relative;
}
.searchArea .searchBox input {
    width: 100%;
    display: block;
    border: 1px solid #e1e1e1;
    padding: 15px 55px 15px 15px;
}
.searchArea .searchBox a {
    width: 50px;
    height: 50px;
    background-color: #191919;
    color: #fff;
    display: block;
    font-size: 16px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    line-height: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 1;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    text-align: center;
}

/*提醒使用cookie彈窗*/
.cookieArea .moduleWrap {
    max-width: 480px;
}
.cookieArea .text {
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

#closeCart,
#closePrice,
#closeInquiry {
    font-size: 18px;
    position: absolute;
    top: 8px;
    right: 10px;
}
@media (max-width: 480px) {
    #closeCart,
#closePrice,
#closeInquiry {
        font-size: 25px;
        top: 5px;
    }
}

/*loading*/
.loadingArea {
    width: 100%;
    height: 100vh;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    pointer-events: none;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
}
.loadingArea .loadLogo {
    width: 275px;
}
.loadingArea .loadLogo img {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    display: block;
    width: 100%;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}
.loadingArea.show {
    opacity: 1;
    pointer-events: auto;
}
.loadingArea.show .loadLogo img {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
}
.loadingArea.hide {
    opacity: 0;
}

@media (min-width: 1181px) {
    .pcHide {
        display: none;
    }
}

@media (max-width: 1180px) {
    .mHide {
        display: none;
    }
}

.moreBtn {
    position: relative;
    width: 260px;
    height: 50px;
    overflow: hidden;
}
@media (max-width: 960px) {
    .moreBtn {
        width: 200px;
    }
}
.moreBtn:hover::before {
    background-color: #eee;
}
.moreBtn:hover a {
    color: #000;
}
.moreBtn:hover span::before {
    border-color: transparent transparent transparent #000;
}
.moreBtn:hover span::after {
    background-color: #000;
}
.moreBtn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    -webkit-transform: skew(10deg);
            transform: skew(10deg);
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.moreBtn a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100%;
    padding: 5px 25px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}
.moreBtn span {
    position: absolute;
    top: 50%;
    right: 30px;
    width: 45px;
    -webkit-animation: btnArrow 1s cubic-bezier(0.4, 0, 0.6, 1) infinite;
            animation: btnArrow 1s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.moreBtn span::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 0;
    height: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    border-style: solid;
    border-width: 5px 0 5px 9px;
    border-color: transparent transparent transparent #fff;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.moreBtn span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1px;
    width: calc(100% - 5px);
    height: 2px;
    background-color: #fff;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

/*header*/
header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    /*menu*/
}
@media (max-width: 1180px) {
    header {
        display: none;
    }
}
header .wrap {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: none;
}
header .logo {
    position: absolute;
    top: 0;
    left: 25px;
    width: 275px;
}
header .logo a {
    display: block;
    width: 100%;
    height: 70px;
    background: url("../images/logo.png") no-repeat;
    background-size: contain;
    background-position: center center;
    text-indent: -9999px;
}
header .menu > li {
    position: relative;
    display: inline-block;
}
header .menu > li > a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 5px 20px;
    height: 70px;
    font-size: 17px;
    font-weight: 500;
    color: #5f5f5f;
    overflow: hidden;
}
@media (max-width: 1366px) {
    header .menu > li > a {
        padding: 5px 10px;
    }
}
header .menu > li > a.current, header .menu > li > a:hover {
    color: #191919;
}
header .menu > li > a.current::before, header .menu > li > a:hover::before {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
}
header .menu > li > a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 4.5px 9px 4.5px;
    border-color: transparent transparent #000000 transparent;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: translate(-50%, 100%);
            transform: translate(-50%, 100%);
}
header .menu .submenu {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 99;
    width: 150px;
    text-align: center;
}
header .menu .submenu a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #dadada;
    font-size: 15px;
    color: #666;
    background-color: #fff;
}
header .menu .submenu a.current, header .menu .submenu a:hover {
    color: #fff;
    background-color: #516190;
}
header .languageBox {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}
header .languageBox::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-transform: skew(10deg);
            transform: skew(10deg);
    background-color: #e9eaea;
}
header .languageBox .language {
    position: relative;
    padding-left: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 180px;
    height: 100%;
    z-index: 1;
}
header .languageBox .icon {
    width: 21px;
    height: 21px;
}
header .languageBox svg {
    width: 100%;
    height: 100%;
}
header .languageBox ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
header .languageBox li {
    position: relative;
}
header .languageBox li:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 14px;
    margin-top: -7px;
    background-color: #c0c1c1;
}
header .languageBox a {
    display: block;
    padding: 5px 12px;
    font-size: 16px;
    font-weight: 500;
    color: #5f5f5f;
    letter-spacing: 1px;
}
header .languageBox a:hover, header .languageBox a.current {
    color: #191919;
}

/*手機menu*/
.m_menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    display: block;
    width: 100%;
    -webkit-box-shadow: 0 2px 5px rgba(126, 126, 126, 0.68);
            box-shadow: 0 2px 5px rgba(126, 126, 126, 0.68);
    /*手機menu內容*/
}
@media (min-width: 1181px) {
    .m_menu {
        display: none;
    }
}
.m_menu .mask {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    padding-bottom: 60px;
}
.m_menu .m_logo {
    display: inline-block;
}
.m_menu .m_logo a {
    margin-left: 20px;
    width: 230px;
    height: 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
@media (max-width: 420px) {
    .m_menu .m_logo a {
        margin-left: 10px;
        width: 160px;
    }
}
.m_menu .m_logo img {
    display: block;
    width: 100%;
}
.m_menu .controlBox {
    position: relative;
    z-index: 99;
    height: 65px;
    background-color: #fff;
}
.m_menu .controlBox a.main {
    position: absolute;
    right: 0;
    top: 0;
    width: 70px;
    height: 65px;
    background-color: #000;
}
@media (max-width: 420px) {
    .m_menu .controlBox a.main {
        width: 60px;
    }
}
.m_menu .controlBox a.main::before {
    content: "";
    position: absolute;
    top: 0;
    left: -11px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 65px 11px 0 11px;
    border-color: #000000 transparent transparent transparent;
}
.m_menu .controlBox a.main span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-top: -8px;
    width: 42px;
    height: 16px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    overflow: hidden;
}
.m_menu .controlBox a.main span:before, .m_menu .controlBox a.main span:after {
    content: "";
    position: absolute;
    right: 0;
    width: 100%;
    height: 4px;
    background-color: #fff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-transform: skew(40deg);
            transform: skew(40deg);
}
.m_menu .controlBox a.main span:before {
    top: 0px;
}
.m_menu .controlBox a.main span:after {
    width: 30px;
    bottom: 0px;
}
.m_menu .controlBox a.main.show span {
    margin-top: 0px;
    width: 30px;
    height: 0px;
    overflow: visible;
}
.m_menu .controlBox a.main.show span:before {
    -webkit-transform-origin: center center;
            transform-origin: center center;
    top: -2px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}
.m_menu .controlBox a.main.show span:after {
    -webkit-transform-origin: center center;
            transform-origin: center center;
    bottom: -2px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
.m_menu .controlBox .languageBox {
    position: absolute;
    top: 0;
    right: 70px;
    width: 80px;
    height: 100%;
    z-index: 1;
}
@media (max-width: 420px) {
    .m_menu .controlBox .languageBox {
        right: 60px;
        width: 60px;
    }
}
.m_menu .controlBox .languageBox .language {
    width: 100%;
    height: 100%;
}
.m_menu .controlBox .languageBox .icon {
    cursor: pointer;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.m_menu .controlBox .languageBox svg {
    width: 21px;
    height: 21px;
}
.m_menu .controlBox .languageBox ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
}
.m_menu .controlBox .languageBox ul li {
    border-top: 1px solid #bbb;
}
.m_menu .controlBox .languageBox ul a {
    width: 100%;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    letter-spacing: 1px;
}
.m_menu .hideBox {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 11;
    display: none;
    width: 100%;
    padding: 65px 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: #fff;
}
.m_menu .hideBox .sp {
    display: none;
    padding: 10px;
    font-size: 13px;
    color: #fff;
    background-color: #c80303;
}
.m_menu .nav {
    margin-top: 20px;
}
.m_menu .nav li {
    margin-bottom: 3px;
}
.m_menu .nav a {
    position: relative;
    display: block;
    padding: 15px 10px;
    font-size: 20px;
    color: #5f5f5f;
    text-align: center;
    overflow: hidden;
    letter-spacing: 1px;
}
.m_menu .nav a::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translate(-50%, 100%);
            transform: translate(-50%, 100%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 4.5px 9px 4.5px;
    border-color: transparent transparent #000000 transparent;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.m_menu .nav a:hover, .m_menu .nav a.current {
    color: #191919;
}
.m_menu .nav a:hover::before, .m_menu .nav a.current::before {
    -webkit-transform: translate(-50%, 0%);
            transform: translate(-50%, 0%);
}
.m_menu .nav a i {
    position: absolute;
    right: 10px;
    top: 50%;
    display: block;
    margin-top: -7px;
}
.m_menu .nav .dropDown > a::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 20px;
    font-family: FontAwesome;
}
.m_menu .nav .submenu {
    display: none;
}
.m_menu .nav .submenu a {
    padding: 10px 20px;
}
.m_menu .nav .submenu a:hover {
    background-color: #999;
}
.m_menu .social {
    margin-top: 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.m_menu .social a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 19px;
    color: #000;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.m_menu .social a:not(:last-child) {
    margin-right: 5px;
}
.m_menu .social a:hover {
    border-color: #000;
}
.m_menu .social .line svg {
    width: 20px;
    height: 20px;
}
.m_menu .copyright {
    margin-top: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: 0.5px;
}
.m_menu .copyright a {
    color: rgba(0, 0, 0, 0.6);
}
.m_menu .copyright a:hover {
    color: #000;
}

/*banner*/
.bannerArea {
    clear: both;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.bannerArea .wrap {
    max-width: 100%;
    padding: 0;
}
.bannerArea .bannerBox img {
    display: block;
    width: 100%;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}
.bannerArea .bannerItem {
    position: relative;
}
.bannerArea .bannerLink {
    display: block;
    z-index: 3;
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.bannerArea .insBanner > li {
    position: relative;
}
@media (max-width: 1180px) {
    .bannerArea .insBanner .Img {
        height: 300px;
    }
    .bannerArea .insBanner .Img img {
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
    }
}
.bannerArea .insBanner .Txt {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1440px;
    padding: 0 20px;
}
.bannerArea .insBanner .Txt::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 430px;
    height: 323px;
    background-repeat: no-repeat;
    background-image: url(../images/watermark.png);
    background-size: contain;
    background-position: center center;
}
@media (max-width: 1180px) {
    .bannerArea .insBanner .Txt::before {
        width: 200px;
    }
}
.bannerArea .insBanner .Txt .bannerTitleBox {
    position: relative;
    padding-bottom: 10px;
    text-align: center;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.33);
}
.bannerArea .insBanner .Txt .bannerTitleBox::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -23px;
    width: 46px;
    height: 2px;
    background-color: #fff;
}
.bannerArea .insBanner .Txt .title {
    font-size: 24px;
    font-weight: 500;
}
@media (max-width: 1180px) {
    .bannerArea .insBanner .Txt .title {
        font-size: 18px;
    }
}
.bannerArea .insBanner .Txt .enTitle {
    font-size: 45px;
    font-weight: 600;
    font-family: "Saira", sans-serif;
    line-height: 1.2;
}
@media (max-width: 1180px) {
    .bannerArea .insBanner .Txt .enTitle {
        font-size: 32px;
    }
}
.bannerArea .insBanner img {
    display: block;
    width: 100%;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}

.goTop {
    position: absolute;
    bottom: 0;
    right: 30px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    font-family: "Saira", sans-serif;
    color: #191919;
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transform-origin: right center;
            transform-origin: right center;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
}
.goTop span {
    position: relative;
    display: block;
    width: 45px;
    margin-right: 10px;
}
.goTop span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    border-style: solid;
    border-width: 5px 9px 5px 0;
    border-color: transparent #000000 transparent transparent;
}
.goTop span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1px;
    width: calc(100% - 5px);
    height: 2px;
    background-color: #000;
}

/*頁尾資訊*/
footer {
    position: relative;
    padding: 40px 0;
    background-repeat: no-repeat;
    background-image: url(../images/bg_footer.jpg);
    background-size: cover;
    overflow: hidden;
}
footer::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 145px 260px 145px;
    border-color: transparent transparent #adadad transparent;
}
@media (max-width: 1180px) {
    footer::before {
        border-width: 0 120px 225px 120px;
    }
}
footer .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
@media (max-width: 1680px) {
    footer .wrap {
        padding-right: 120px;
    }
}
@media (max-width: 767px) {
    footer .wrap {
        display: block;
        padding-right: 20px;
    }
}
footer .left {
    position: relative;
    padding-right: 20px;
    width: 600px;
    z-index: 1;
}
@media (max-width: 767px) {
    footer .left {
        width: 100%;
        padding-right: 0;
    }
}
footer .right {
    position: relative;
    z-index: 1;
}
@media (max-width: 767px) {
    footer .right {
        padding-right: 80px;
    }
}
footer .right .top {
    margin-top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
@media (min-width: 768px) {
    footer .right .top {
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
    }
}
@media (max-width: 420px) {
    footer .right .top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
    }
}
footer .downLogo {
    margin-bottom: 15px;
    width: 100%;
    max-width: 316px;
}
footer .downLogo img {
    display: block;
    width: 100%;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}
footer .infoList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-family: "Saira", "Noto Sans TC", "微軟正黑體", sans-serif;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.5px;
    margin: 0 -10px;
}
@media (max-width: 767px) {
    footer .infoList {
        padding-right: 60px;
    }
}
footer .infoList li {
    padding: 2px 10px;
}
footer .infoList li a, footer .infoList li span {
    line-height: 1;
    position: relative;
}
footer .infoList li a {
    color: #fff;
}
@media (min-width: 1201px) {
    footer .infoList li a:hover {
        text-decoration: underline;
    }
}
footer .infoList .address a {
    font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
}
footer .social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
footer .social a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 19px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
footer .social a:not(:last-child) {
    margin-right: 5px;
}
footer .social a:hover {
    border-color: #fff;
}
footer .social .line svg {
    width: 20px;
    height: 20px;
}
footer .languageBox {
    margin-right: -12px;
}
footer .languageBox .language {
    position: relative;
    padding-left: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 1;
}
@media (max-width: 420px) {
    footer .languageBox .language {
        padding-top: 20px;
        padding-left: 0;
    }
}
footer .languageBox .icon {
    width: 21px;
    height: 21px;
}
footer .languageBox svg {
    width: 100%;
    height: 100%;
    color: #fff;
}
footer .languageBox ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
footer .languageBox li {
    position: relative;
}
footer .languageBox li:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 14px;
    margin-top: -7px;
    background-color: #c0c1c1;
}
footer .languageBox a {
    display: block;
    padding: 5px 12px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 1px;
}
footer .languageBox a:hover, footer .languageBox a.current {
    color: #fff;
}
footer .copyright {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
}
@media (min-width: 768px) {
    footer .copyright {
        text-align: right;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
    }
}
footer .copyright a {
    color: rgba(255, 255, 255, 0.3);
}
footer .copyright a:hover {
    color: #fff;
}

.privacyArea {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
            box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
    padding: 45px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 50;
    -webkit-transition: all 0.6s 0.1s;
    transition: all 0.6s 0.1s;
}
.privacyArea.check {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
}
.privacyArea .wrap {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.privacyArea .text {
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.5px;
    max-width: 960px;
}
.privacyArea .text a {
    color: #fff;
    display: inline-block;
    margin-top: 8px;
    text-decoration: underline;
    opacity: 0.8;
}
.privacyArea .text a:hover {
    opacity: 1;
}
.privacyArea .btn {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    position: relative;
    margin-left: 25px;
    padding-top: 0;
    overflow: hidden;
}
.privacyArea .btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: skew(10deg);
            transform: skew(10deg);
    background-color: #fff;
}
.privacyArea .btn a {
    position: relative;
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 260px;
    height: 50px;
    letter-spacing: 0.5px;
    padding: 5px 25px;
}
@media (max-width: 960px) {
    .privacyArea .btn a {
        width: 200px;
    }
}
.privacyArea .btn span {
    position: absolute;
    top: 50%;
    right: 30px;
    width: 45px;
    -webkit-animation: btnArrow 1s cubic-bezier(0.4, 0, 0.6, 1) infinite;
            animation: btnArrow 1s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.privacyArea .btn span::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 0;
    height: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    border-style: solid;
    border-width: 5px 0 5px 9px;
    border-color: transparent transparent transparent #000000;
}
.privacyArea .btn span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -1px;
    width: calc(100% - 5px);
    height: 2px;
    background-color: #000;
}
@media (max-width: 768px) {
    .privacyArea .wrap {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        text-align: center;
    }
    .privacyArea .text {
        width: 100%;
    }
    .privacyArea .btn {
        margin-top: 25px;
        margin-left: 0;
    }
}

/*手機快捷選單*/
.fixedQuickLink {
    width: 100%;
    background-color: #000;
    padding-bottom: env(safe-area-inset-bottom);
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 5;
}
@media (min-width: 1181px) {
    .fixedQuickLink {
        display: none;
    }
}
.fixedQuickLink ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.fixedQuickLink li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.fixedQuickLink li:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.fixedQuickLink a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 55px;
    font-size: 13px;
    color: #fff;
}
.fixedQuickLink i {
    margin-bottom: 5px;
}

/*後台登入模式*/
.adminLoginArea {
    width: 100%;
    background-color: rgba(180, 0, 0, 0.85);
    color: #fff;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0.5px;
    opacity: 0;
    pointer-events: none;
    padding-bottom: env(safe-area-inset-bottom);
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1100;
    text-align: center;
}
.adminLoginArea p {
    padding: 20px 15px;
}
.adminLoginArea.show {
    opacity: 1;
}

/*booking*/
.bookingArea {
    margin-top: -85px;
    position: relative;
    z-index: 2;
}
.bookingArea .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    background-color: #fff;
}
@media (max-width: 960px) {
    .bookingArea .wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding: 15px 20px;
    }
}
.bookingArea .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-flex: 3;
        -ms-flex: 3;
            flex: 3;
    font-size: 15px;
    border-right: 1px solid #e6e6e6;
}
@media (max-width: 960px) {
    .bookingArea .title {
        display: none;
    }
}
.bookingArea .title i {
    margin-right: 15px;
    font-size: 20px;
}
.bookingArea .bookingList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 6;
        -ms-flex: 6;
            flex: 6;
    padding: 20px;
}
@media (max-width: 960px) {
    .bookingArea .bookingList {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding: 0;
    }
}
@media (max-width: 960px) {
    .bookingArea .bookingList li {
        margin-bottom: 15px;
    }
}
.bookingArea .bookingList li:not(:first-child) {
    margin-left: 10px;
}
@media (max-width: 960px) {
    .bookingArea .bookingList li:not(:first-child) {
        margin-left: 0;
    }
}
.bookingArea .btn {
    -webkit-box-flex: 3;
        -ms-flex: 3;
            flex: 3;
}
@media (max-width: 960px) {
    .bookingArea .btn {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
    }
}
.bookingArea .btn a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
    font-size: 16px;
    color: #fff;
    letter-spacing: 0.2em;
    background-color: #191919;
}
@media (max-width: 960px) {
    .bookingArea .btn a {
        padding: 12px;
    }
}
.bookingArea input,
.bookingArea select {
    height: 45px;
    padding: 5px 10px;
    border: 1px solid #e6e6e6;
    font-size: 16px;
    font-family: "微軟正黑體";
}
@media (max-width: 960px) {
    .bookingArea input,
.bookingArea select {
        width: 100%;
    }
}

/*********內頁**********/
.mainArea {
    padding-top: 80px;
    padding-bottom: 120px;
}
@media (max-width: 1180px) {
    .mainArea {
        padding: 30px 0;
    }
}
@media (max-width: 768px) {
    .mainArea {
        padding-top: 30px;
    }
}
.mainArea404 {
    width: 100%;
    height: calc(100vh - 300px);
    min-height: 500px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.mainArea404 .top {
    max-width: 380px;
    color: #191919;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .mainArea404 {
        height: 50vh;
        min-height: 350px;
    }
    .mainArea404 .top {
        font-size: 24px;
    }
}
.mainArea .contentBox {
    clear: both;
}

.titleBox {
    position: relative;
    padding-bottom: 7px;
    margin-bottom: 15px;
}
.titleBox.center {
    text-align: center;
}
.titleBox.center::before {
    left: 50%;
    margin-left: -22.5px;
}
.titleBox.right {
    text-align: right;
}
.titleBox.right::before {
    left: auto;
    right: 0;
}
.titleBox::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 2px;
    background-color: #000;
}
.titleBox .title {
    font-size: 24px;
    font-weight: 500;
    color: #666666;
}
@media (max-width: 420px) {
    .titleBox .title {
        font-size: 18px;
    }
}
.titleBox .subTitle {
    font-size: 45px;
    font-weight: 600;
    font-family: "Saira", sans-serif;
    line-height: 1.3;
}
@media (max-width: 420px) {
    .titleBox .subTitle {
        font-size: 30px;
    }
}

/*bread*/
.breadArea {
    position: relative;
}

.bread {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 50px;
    padding: 25px 0;
}
.bread .wrap {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.bread .wrap a, .bread .wrap span {
    display: inline-block;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.5px;
}
.bread .wrap a {
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.33);
    color: #a9a9a9;
}
.bread .wrap a:hover {
    color: #191919;
}
.bread .wrap span {
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.33);
    color: #666;
}
.bread .wrap span + a,
.bread .wrap a + span {
    padding-left: 20px;
    position: relative;
}
.bread.arrow .wrap span + a,
.bread.arrow .wrap a + span {
    padding-left: 25px;
    position: relative;
}
.bread.arrow .wrap span + a::before,
.bread.arrow .wrap a + span::before {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 1px solid #a9a9a9;
    border-bottom: 1px solid #a9a9a9;
    position: absolute;
    top: 50%;
    left: 7px;
    z-index: 1;
    -webkit-transform: translateY(-50%) rotate(-45deg);
            transform: translateY(-50%) rotate(-45deg);
}
.bread.verticalLine .wrap span + a,
.bread.verticalLine .wrap a + span {
    padding-left: 20px;
    position: relative;
}
.bread.verticalLine .wrap span + a::before,
.bread.verticalLine .wrap a + span::before {
    content: "";
    width: 1px;
    height: 80%;
    background-color: #a9a9a9;
    position: absolute;
    top: 10%;
    left: 10px;
    z-index: 1;
}
.bread.horizontalLine .wrap span + a,
.bread.horizontalLine .wrap a + span {
    padding-left: 25px;
    position: relative;
}
.bread.horizontalLine .wrap span + a::before,
.bread.horizontalLine .wrap a + span::before {
    content: "";
    width: 8px;
    height: 1px;
    background-color: #a9a9a9;
    position: absolute;
    top: 50%;
    left: 8px;
    z-index: 1;
}
.bread.slashLine .wrap span + a,
.bread.slashLine .wrap a + span {
    padding-left: 20px;
    position: relative;
}
.bread.slashLine .wrap span + a::before,
.bread.slashLine .wrap a + span::before {
    content: "";
    width: 1px;
    height: 80%;
    background-color: #a9a9a9;
    position: absolute;
    top: 24%;
    left: 10px;
    z-index: 1;
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
}
.bread.hasBanner {
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    border-bottom: none;
    z-index: 1;
    margin-bottom: 0;
}
.bread.hasBanner .wrap a {
    color: #fff;
}
.bread.hasBanner .wrap a:hover {
    opacity: 0.7;
}
.bread.hasBanner .wrap span {
    color: #fff;
}
.bread.hasBanner .wrap span + a::before,
.bread.hasBanner .wrap a + span::before {
    background-color: #fff;
}
@media (max-width: 768px) {
    .bread {
        display: none;
    }
}

/*文章標題*/
.articleTitle {
    clear: both;
    margin-bottom: 25px;
    padding: 10px;
    border-bottom: 1px solid #d6d6d6;
    font-weight: 400;
    font-size: 20px;
    color: #232323;
}

/*側邊標題字*/
.sectionTitle {
    margin-bottom: 10px;
    padding: 5px;
    border-bottom: 2px solid #000;
    font-size: 30px;
    font-family: "Saira", sans-serif;
    color: #232323;
}
.sectionTitle strong {
    display: block;
    position: relative;
    font-weight: 600;
}
.sectionTitle a {
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

table.breakpoint > tbody > tr > td.expand {
    cursor: pointer;
    background: url("../images/plus.png") no-repeat 5px center;
    padding-left: 40px;
}

@-webkit-keyframes aniSlideLeft {
    0% {
        -webkit-transform: translateX(10px);
                transform: translateX(10px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0);
                transform: translateX(0);
        opacity: 1;
    }
}

@keyframes aniSlideLeft {
    0% {
        -webkit-transform: translateX(10px);
                transform: translateX(10px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0);
                transform: translateX(0);
        opacity: 1;
    }
}
/*類別*/
.classOutBox {
    text-align: center;
    margin-bottom: 50px;
}
@media (max-width: 1023px) {
    .classOutBox {
        margin-bottom: 30px;
    }
    .classOutBox .classRowBox {
        display: block;
        overflow: visible;
    }
}

.classRowBox {
    position: relative;
    z-index: 3;
    display: inline-block;
    overflow: hidden;
}
.classRowBox > ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: -10px;
}
@media (max-width: 1023px) {
    .classRowBox > ul {
        display: none;
    }
}
.classRowBox > ul a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    padding: 10px 15px;
    min-width: 160px;
    height: 50px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background-color: #000;
    letter-spacing: 2px;
    text-align: center;
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: skew(10deg);
            transform: skew(10deg);
}
.classRowBox > ul a.current, .classRowBox > ul a:hover {
    color: #000;
    background-color: #eee;
}
.classRowBox > ul a span {
    -webkit-transform: skew(-10deg);
            transform: skew(-10deg);
}

.classColumnBox {
    position: relative;
    z-index: 3;
}
@media (max-width: 1023px) {
    .classColumnBox > ul {
        display: none;
    }
}
.classColumnBox > ul > li > a {
    padding: 10px 15px;
    background-color: #000;
    color: #fff;
}
.classColumnBox > ul ul {
    display: none;
    margin-bottom: 30px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.classColumnBox > ul ul li + li {
    border-top: 1px solid #ccc;
}
.classColumnBox > ul a {
    position: relative;
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 15px;
    color: #fff;
}
.classColumnBox > ul a.current, .classColumnBox > ul a:hover {
    background-color: #eee;
    color: #000;
}
.classColumnBox > ul .linkHasItems.open + ul {
    display: block;
}
.classColumnBox > ul .linkHasItems.open + ul > li {
    -webkit-animation: 0.5s aniSlideLeft both ease-out 0.3s;
            animation: 0.5s aniSlideLeft both ease-out 0.3s;
}

.mClassLink {
    position: relative;
    z-index: 3;
}
@media (min-width: 1024px) {
    .mClassLink {
        display: none;
    }
}
.mClassLink.open > ul {
    display: block;
}
.mClassLink .main {
    position: relative;
    display: block;
    font-size: 16px;
    padding: 10px 30px 10px 10px;
    color: #fff;
    letter-spacing: 1px;
    cursor: pointer;
    background-color: #000;
}
.mClassLink .main::before {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    z-index: 1;
    margin-top: -6px;
    line-height: 1;
    font-size: 15px;
    color: #fff;
    font-family: FontAwesome;
}
.mClassLink > ul {
    position: absolute;
    left: 0;
    top: calc(100% - 1px);
    z-index: 1;
    display: none;
    width: 100%;
    background-color: #fff;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.mClassLink > ul > li + li {
    border-top: 1px solid #f2f2f2;
}
.mClassLink > ul > li.current > a {
    color: #191919;
}
.mClassLink > ul a {
    position: relative;
    z-index: 1;
    display: block;
    padding: 14px 20px;
    color: #000;
    font-size: 14px;
    background-color: #fff;
}
.mClassLink ul {
    display: none;
}
.mClassLink .linkHasItems {
    position: relative;
    padding-right: 40px;
}
.mClassLink .linkHasItems::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 17px;
    z-index: 1;
    line-height: 1;
    margin-top: -7px;
    font-family: FontAwesome;
}
.mClassLink .linkHasItems.open::after {
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
}
.mClassLink .linkHasItems.open + ul {
    display: block;
}
.mClassLink .linkHasItems + ul {
    background-color: #efefef;
}
.mClassLink .linkHasItems + ul a {
    padding: 10px 5px 10px 30px;
    background-color: #efefef;
}
.mClassLink .linkHasItems + ul a.current {
    color: #191919;
}

.pageBox {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-top: 1px solid #cecece;
    padding: 40px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.pageBox a {
    border: 1px solid #c2c2c2;
    color: #666;
    display: block;
    font-size: 15px;
}
.pageBox a.prevBtn::before, .pageBox a.nextBtn::before {
    content: "";
    width: 10px;
    height: 10px;
    border-left: 1px solid #9e9e9e;
    border-bottom: 1px solid #9e9e9e;
    display: block;
    position: absolute;
}
.pageBox a.prevBtn::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}
.pageBox a.nextBtn::before {
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
}
.pageBox a:hover {
    border: 1px solid #191919;
    background-color: #191919;
    color: #fff;
}
.pageBox a:hover.prevBtn::before, .pageBox a:hover.nextBtn::before {
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
.pageBox.number {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.pageBox.number.oval a {
    width: 50px;
}
.pageBox.number a {
    width: 30px;
    height: 30px;
    font-weight: 400;
    line-height: 30px;
    margin: 0 5px;
    position: relative;
    text-align: center;
}
.pageBox.number a.prevBtn::before, .pageBox.number a.nextBtn::before {
    margin: auto;
    top: 0;
    bottom: 0;
}
.pageBox.number a.prevBtn::before {
    left: 5px;
    right: 0;
}
.pageBox.number a.nextBtn::before {
    left: 0;
    right: 5px;
}
.pageBox.number a.firstBtn::before, .pageBox.number a.firstBtn::after, .pageBox.number a.lastBtn::before, .pageBox.number a.lastBtn::after {
    content: "";
    width: 10px;
    height: 10px;
    border-left: 1px solid #9e9e9e;
    border-bottom: 1px solid #9e9e9e;
    display: block;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
}
.pageBox.number a.firstBtn::before, .pageBox.number a.firstBtn::after {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}
.pageBox.number a.firstBtn::before {
    left: -2px;
    right: 0;
}
.pageBox.number a.firstBtn::after {
    left: 12px;
    right: 0;
}
.pageBox.number a.lastBtn::before, .pageBox.number a.lastBtn::after {
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
}
.pageBox.number a.lastBtn::before {
    left: 0;
    right: -2px;
}
.pageBox.number a.lastBtn::after {
    left: 0;
    right: 12px;
}
.pageBox.number a.current {
    border: 1px solid #191919;
    background-color: #191919;
    color: #fff;
}
.pageBox.number a:hover.firstBtn::before, .pageBox.number a:hover.firstBtn::after, .pageBox.number a:hover.lastBtn::before, .pageBox.number a:hover.lastBtn::after {
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
.pageBox.prevnext {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.pageBox.prevnext a {
    width: 180px;
    height: 45px;
    font-weight: 300;
    line-height: 45px;
    padding: 0 20px;
    position: relative;
}
.pageBox.prevnext a.prevBtn::before, .pageBox.prevnext a.nextBtn::before {
    top: calc(50% - 5px);
}
.pageBox.prevnext a.prevBtn {
    text-align: right;
}
.pageBox.prevnext a.prevBtn::before {
    left: 15px;
}
.pageBox.prevnext a.nextBtn {
    margin-left: auto;
    text-align: left;
}
.pageBox.prevnext a.nextBtn::before {
    right: 15px;
}
@media (max-width: 768px) {
    .pageBox.prevnext a {
        width: 125px;
        padding: 0 15px;
    }
}
@media (max-width: 640px) {
    .pageBox.prevnext a {
        width: calc(100%/2 - 15px);
    }
}
@media (max-width: 480px) {
    .pageBox.prevnext a {
        width: calc(100%/2 - 10px);
    }
}
.pageBox.prevnext.circle a {
    width: 45px;
    padding: 0;
}
.pageBox.prevnext.circle a span {
    display: none;
}
.pageBox.prevnext.circle a.prevBtn::before {
    left: calc(50% - 3px);
}
.pageBox.prevnext.circle a.nextBtn::before {
    right: calc(50% - 3px);
}
.pageBox.circle a {
    border-radius: 50%;
    overflow: hidden;
}
.pageBox.oval a {
    border-radius: 30px;
    overflow: hidden;
}

/*標籤*/
.tagBox {
    padding: 20px 0;
}
.tagBox b {
    display: inline-block;
    margin-right: 10px;
}
.tagBox ul {
    display: inline-block;
}
.tagBox li {
    display: inline-block;
    margin-bottom: 5px;
}
.tagBox a {
    position: relative;
    display: block;
    margin: 0 3px;
    padding: 5px 10px;
    border: 1px solid #191919;
    font-size: 13px;
    color: #191919;
}
.tagBox a:hover {
    color: #fff;
    background-color: #191919;
}
.tagBox a.current {
    color: #fff;
    background-color: #191919;
}
.tagBox a.current:before {
    content: "";
    margin-right: 5px;
    font-family: FontAwesome;
    font-size: 12px;
}

/*頁籤*/
.tab {
    border-top: 1px solid #d6d6d6;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 40px;
}
.tab li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.tab a {
    color: #333;
    display: block;
    line-height: 1;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 15px 10px;
    position: relative;
    z-index: 2;
    text-align: center;
}
.tab a.current {
    background-color: #191919;
    color: #fff;
}

/*頁籤內容*/
.tabContent {
    margin-top: -1px;
    padding: 20px 5px;
    border-top: 1px solid #d6d6d6;
}
.tabContent .tabContentItem {
    display: none;
}

/*側邊_menu*/
.side_menu {
    margin-bottom: 50px;
}
.side_menu li {
    border-bottom: 1px solid #e1e1e1;
    position: relative;
}
.side_menu li > a {
    display: block;
    font-size: 14px;
    padding: 10px 15px;
}
.side_menu li > a.current {
    background-color: #8c8c8c;
    color: #fff;
}
.side_menu li > a b {
    color: #808080;
    font-size: 13px;
    font-weight: 400;
    margin-left: 10px;
}
.side_menu dl {
    padding-left: 25px;
}
.side_menu dl a {
    display: block;
    padding: 10px 15px;
    font-size: 14px;
}
.side_menu dl a.current {
    color: #000;
    text-decoration: underline;
}

/*側邊_相簿*/
.side_album {
    margin-top: 30px;
    margin-bottom: 30px;
    margin-right: -10px;
}
.side_album li {
    float: left;
    width: 33.33%;
    padding: 0 10px 10px 0;
}
.side_album a {
    display: block;
    -webkit-box-shadow: 2px 2px 5px #c3c3c3;
            box-shadow: 2px 2px 5px #c3c3c3;
}
.side_album a img {
    display: block;
    width: 100%;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}

/*側邊_線上訂房*/
.side_booking {
    margin-bottom: 30px;
}
.side_booking a {
    display: block;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px #8d2121;
            box-shadow: 0 1px 1px #8d2121;
    font-weight: bold;
    font-size: 25px;
    color: #fff;
    background-color: #f05b8f;
}
.side_booking a i {
    display: inline-block;
    font-size: 28px;
    padding: 10px 15px;
    margin-right: 15px;
    border-right: 1px solid #d33434;
    -webkit-box-shadow: 1px 0 #f38a8a;
            box-shadow: 1px 0 #f38a8a;
}
.side_booking a:hover {
    -webkit-box-shadow: inset 0 3px 3px #8d2121;
            box-shadow: inset 0 3px 3px #8d2121;
}

/*側邊_聯絡資訊*/
.side_contactInfo {
    padding-top: 20px;
}
.side_contactInfo li {
    margin-bottom: 20px;
}
.side_contactInfo a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 16px;
    color: #414141;
}
.side_contactInfo i {
    display: inline-block;
    vertical-align: middle;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    margin-right: 8px;
    border: 2px solid #000;
    border-radius: 50%;
    font-size: 20px;
    color: #000;
    text-align: center;
}
.side_contactInfo b {
    display: inline-block;
    vertical-align: middle;
    font-weight: 400;
}

/*側邊_房型*/
.side_room {
    margin-bottom: 50px;
}
.side_room .Img img {
    display: block;
    width: 100%;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}
.side_room .Txt {
    margin-top: 5px;
}
.side_room .Txt p {
    max-height: 100px;
    font-size: 13px;
    color: #858383;
    line-height: 1.8;
    overflow: hidden;
}
.side_room h3 a {
    font-size: 16px;
    font-weight: 400;
}

/*側邊_分享*/
.side_share {
    display: none;
    margin-top: 30px;
}
@media (max-width: 767px) {
    .side_share {
        display: block;
        margin-bottom: 30px;
    }
}
.side_share a {
    display: block;
    width: 100%;
    margin-top: 5px;
    padding: 15px 10px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 13px;
    line-height: 1;
    color: #fff;
    text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.25);
    text-align: center;
}
.side_share i {
    padding-right: 5px;
    font-size: 18px;
}
.side_share .line {
    -webkit-box-shadow: 0 0 0 1px #22a00b;
            box-shadow: 0 0 0 1px #22a00b;
    border-top: 1px solid #e1ffa9;
    background: #a7e732;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMTAwJSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjYTdlNzMyIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMzUlIiBzdG9wLWNvbG9yPSIjMWZiNTBlIiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==);
    background: -moz-linear-gradient(-45deg, #a7e732 0%, #1fb50e 35%);
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #a7e732), color-stop(35%, #1fb50e));
    background: -webkit-linear-gradient(-45deg, #a7e732 0%, #1fb50e 35%);
    background: -o-linear-gradient(-45deg, #a7e732 0%, #1fb50e 35%);
    background: -ms-linear-gradient(-45deg, #a7e732 0%, #1fb50e 35%);
    background: linear-gradient(135deg, #a7e732 0%, #1fb50e 35%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a7e732", endColorstr="#1fb50e", GradientType=1);
}
.side_share .fb {
    -webkit-box-shadow: 0 0 0 1px #235c9b;
            box-shadow: 0 0 0 1px #235c9b;
    border-top: 1px solid #8DCFF5;
    background: #5da0ea;
    /* Old browsers */
    /* IE9 SVG, needs conditional override of 'filter' to 'none' */
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzVkYTBlYSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMzZDhjZTYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top, #5da0ea 0%, #3d8ce6 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5da0ea), color-stop(100%, #3d8ce6));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #5da0ea 0%, #3d8ce6 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #5da0ea 0%, #3d8ce6 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #5da0ea 0%, #3d8ce6 100%);
    /* IE10+ */
    background: -webkit-gradient(linear, left top, left bottom, from(#5da0ea), to(#3d8ce6));
    background: linear-gradient(to bottom, #5da0ea 0%, #3d8ce6 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5da0ea", endColorstr="#3d8ce6", GradientType=0);
    /* IE6-8 */
}

/*側邊_其他相關訊息*/
.side_news {
    margin: 30px 0;
}
.side_news ul {
    margin-top: 20px;
}
.side_news li {
    margin-bottom: 25px;
}
.side_news .Img {
    float: left;
    width: 60px;
    margin-right: 12px;
    overflow: hidden;
}
.side_news .Img img {
    display: block;
    height: 60px;
}
.side_news .Txt {
    overflow: hidden;
}
.side_news .Txt a {
    display: block;
    font-size: 14px;
    line-height: 1.5;
    font-weight: bold;
}
.side_news .Txt a:hover {
    text-decoration: underline;
}
.side_news .Txt b {
    display: block;
    font-weight: 400;
    font-size: 12px;
    color: #999;
}

/*title*/
.titleStyle1 {
    padding-bottom: 10px;
    font-weight: 400;
    font-size: 24px;
    color: #000;
    text-align: center;
    letter-spacing: 0.05em;
}

/*button*/
.btn1.center {
    text-align: center;
}
.btn1.full a {
    width: 100%;
}
.btn1 a {
    position: relative;
    z-index: 1;
    display: inline-block;
    min-width: 190px;
    text-align: center;
    padding: 13px 30px;
    font-size: 14px;
    letter-spacing: 0.01em;
    color: #fff;
    background-color: #0e0e0e;
    border: 1px solid #0e0e0e;
}
.btn1 a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    width: 0;
    height: 100%;
    background-color: #191919;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.btn1 a:hover {
    border-color: #191919;
}
.btn1 a:hover::after {
    right: auto;
    left: 0;
    width: 100%;
}
.btn1 a.white {
    background-color: #fff;
    border: 1px solid #68a9b1;
    color: #68a9b1;
}
.btn1 a.white::after {
    background-color: #68a9b1;
}
.btn1 a.white:hover {
    color: #fff;
}

/*滑動解鎖*/
.captchaArea {
    position: relative;
    width: 200px;
    height: 50px;
    background-color: #ddd;
}
.captchaArea.unlocking .sliderBtn {
    -webkit-transition: none;
    transition: none;
}
.captchaArea .note {
    position: absolute;
    top: 17px;
    right: 30px;
    z-index: 1;
    font-size: 15px;
    text-align: center;
    font-family: "微軟正黑體";
    color: #777;
    letter-spacing: 1px;
    pointer-events: none;
}

.sliderBtn {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 50px;
    height: 50px;
    border: none;
    outline: none;
    background-color: RoyalBlue;
    cursor: pointer;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.sliderBtn::before {
    content: "";
    position: absolute;
    top: 13px;
    left: 23px;
    color: #fff;
    font-size: 24px;
    font-family: FontAwesome;
    pointer-events: none;
}

/*Hover效果1: 放大淡出*/
.imh_opacity {
    background-color: #000;
    overflow: hidden;
}
.imh_opacity img {
    -webkit-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);
            transform: scale(1.05);
}

/*Hover效果1: 放大淡出Detail*/
.imh_detail {
    background-color: #000;
    overflow: hidden;
    position: relative;
}
.imh_detail img {
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}
.imh_detail a:before {
    content: "Details+";
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 99;
    margin-left: -45px;
    margin-top: -80px;
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: #fff;
    border: 2px solid #fff;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.imh_detail:hover a:before {
    opacity: 1;
    margin-top: -20px;
}
.imh_detail:hover img {
    opacity: 0.3;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
}

/*Hover效果1: 放大淡出zoom*/
.imh_zoom {
    background-color: #000;
    overflow: hidden;
    position: relative;
}
.imh_zoom img {
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.imh_zoom a:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: -30px;
    margin-top: -20px;
    margin-left: -20px;
    z-index: 99;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    font-size: 18px;
    color: #fff;
    font-family: FontAwesome;
    text-align: center;
    background-color: #000;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.imh_zoom:hover a:before {
    top: 50%;
}
.imh_zoom:hover img {
    opacity: 0.3;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
}

/*最新消息icon*/
.newIcon {
    /*分類小圖示*/
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #fff;
}