@charset "UTF-8";
/* CSS Document */
@import url(reset.css);
@import url(font-awesome.min.css);
@import url(rwdgrid.css);
@import url(textEditor.css);
@import url(contentbuilder.css);
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;700&family=Roboto:wght@300;400;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap);
.mClassLink > ul, .mClassLink .main, .classRowBox > ul a, .classItemBox > 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, .classItemBox {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

@-webkit-keyframes rotate {
    to {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

@keyframes rotate {
    to {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}
@-webkit-keyframes rotate_r {
    to {
        -webkit-transform: rotate(-360deg);
                transform: rotate(-360deg);
    }
}
@keyframes rotate_r {
    to {
        -webkit-transform: rotate(-360deg);
                transform: rotate(-360deg);
    }
}
body {
    background-color: #fff;
    font-family: "Noto Sans TC", Helvetica, Arial, "微軟正黑體", Heiti TC, "メイリオ", sans-serif;
    font-size: 14px;
}
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: #6F94AB;
}

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: #304861;
}
.btn_color1:hover {
    background-color: #6F94AB;
}
.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;
    }
}

.wrap {
    width: 100%;
    max-width: 1330px;
    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: #304861;
    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: #304861;
}
.cartArea .cartNote .text {
    font-size: 15px;
    letter-spacing: 0.05em;
    color: #373737;
}
.cartArea .cartNote .text b {
    padding-left: 4px;
    padding-right: 4px;
    font-weight: 400;
    font-size: 18px;
    color: #304861;
}
.cartArea .cart {
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-top: 2px solid #304861;
    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-top: 10px;
    padding-left: 15px;
    padding-right: 50px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 15px;
}
.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: #304861;
    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 {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 1;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}

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

@-webkit-keyframes loadLine {
    0% {
        width: 0;
    }
    20% {
        width: 30%;
    }
    60% {
        width: 65%;
    }
    100% {
        width: 100%;
    }
}

@keyframes loadLine {
    0% {
        width: 0;
    }
    20% {
        width: 30%;
    }
    60% {
        width: 65%;
    }
    100% {
        width: 100%;
    }
}
@-webkit-keyframes loadLineMove {
    0% {
        height: 8px;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        height: 100%;
        -webkit-transform: translateY(101%);
        transform: translateY(101%);
    }
}
@keyframes loadLineMove {
    0% {
        height: 8px;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        height: 100%;
        -webkit-transform: translateY(101%);
        transform: translateY(101%);
    }
}
@-webkit-keyframes loadLineMove02 {
    0% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-101%);
                transform: translateY(-101%);
    }
}
@keyframes loadLineMove02 {
    0% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-101%);
                transform: translateY(-101%);
    }
}
@-webkit-keyframes logoFadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes logoFadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@-webkit-keyframes logoShowIn {
    0% {
        background-position-y: 25px;
    }
    100% {
        background-position-y: 0;
    }
}
@keyframes logoShowIn {
    0% {
        background-position-y: 25px;
    }
    100% {
        background-position-y: 0;
    }
}
@-webkit-keyframes logoShowOut {
    0% {
        background-position-y: 0px;
    }
    100% {
        background-position-y: -25px;
    }
}
@keyframes logoShowOut {
    0% {
        background-position-y: 0px;
    }
    100% {
        background-position-y: -25px;
    }
}
/*loading*/
.loadingArea {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 100%;
    height: 100vh;
    opacity: 0;
    pointer-events: none;
}
.loadingArea::before {
    content: "";
    width: 0;
    height: 8px;
    background-color: #304861;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
}
.loadingArea::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.loadingArea .loadLogo {
    width: 174px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.loadingArea .loadLogo img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    opacity: 0;
}
.loadingArea .loadLogo .word {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    height: 25px;
    background-repeat: no-repeat;
    background-image: url(../images/logo.png);
}
.loadingArea .loadLogo .word.logo01 {
    width: 28px;
    background-position: 0 25px;
}
.loadingArea .loadLogo .word.logo02 {
    width: 30px;
    background-position: -28px 25px;
}
.loadingArea .loadLogo .word.logo03 {
    width: 30px;
    background-position: -58px 25px;
}
.loadingArea .loadLogo .word.logo04 {
    width: 30px;
    background-position: -88px 25px;
}
.loadingArea .loadLogo .word.logo05 {
    width: 30px;
    background-position: -118px 25px;
}
.loadingArea .loadLogo .word.logo06 {
    width: 27px;
    background-position: -148px 25px;
}
.loadingArea.show {
    opacity: 1;
    pointer-events: auto;
}
.loadingArea.show::after {
    -webkit-animation: loadLineMove02 0.8s 3.4s forwards;
            animation: loadLineMove02 0.8s 3.4s forwards;
}
.loadingArea.show .loadLogo .word.logo01 {
    -webkit-animation: logoShowIn 0.6s 0.3s forwards ease, logoShowOut 0.6s 2.5s forwards ease;
            animation: logoShowIn 0.6s 0.3s forwards ease, logoShowOut 0.6s 2.5s forwards ease;
}
.loadingArea.show .loadLogo .word.logo02 {
    -webkit-animation: logoShowIn 0.6s 0.4s forwards ease, logoShowOut 0.6s 2.6s forwards ease;
            animation: logoShowIn 0.6s 0.4s forwards ease, logoShowOut 0.6s 2.6s forwards ease;
}
.loadingArea.show .loadLogo .word.logo03 {
    -webkit-animation: logoShowIn 0.6s 0.5s forwards ease, logoShowOut 0.6s 2.7s forwards ease;
            animation: logoShowIn 0.6s 0.5s forwards ease, logoShowOut 0.6s 2.7s forwards ease;
}
.loadingArea.show .loadLogo .word.logo04 {
    -webkit-animation: logoShowIn 0.6s 0.6s forwards ease, logoShowOut 0.6s 2.8s forwards ease;
            animation: logoShowIn 0.6s 0.6s forwards ease, logoShowOut 0.6s 2.8s forwards ease;
}
.loadingArea.show .loadLogo .word.logo05 {
    -webkit-animation: logoShowIn 0.6s 0.7s forwards ease, logoShowOut 0.6s 2.9s forwards ease;
            animation: logoShowIn 0.6s 0.7s forwards ease, logoShowOut 0.6s 2.9s forwards ease;
}
.loadingArea.show .loadLogo .word.logo06 {
    -webkit-animation: logoShowIn 0.6s 0.8s forwards ease, logoShowOut 0.6s 3s forwards ease;
            animation: logoShowIn 0.6s 0.8s forwards ease, logoShowOut 0.6s 3s forwards ease;
}

/*arrowBox*/
.arrowBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.arrowBox .prev,
.arrowBox .next {
    cursor: pointer;
    position: relative;
    width: 40px;
    height: 40px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.arrowBox .prev:before, .arrowBox .prev:after,
.arrowBox .next:before,
.arrowBox .next:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 10px;
    height: 1px;
    background-color: #fff;
}
.arrowBox .prev {
    background-color: #3c3c3c;
}
.arrowBox .prev:hover {
    background-color: #626262;
}
.arrowBox .prev:before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: translate(-50%, -50%) rotate(-40deg);
            transform: translate(-50%, -50%) rotate(-40deg);
}
.arrowBox .prev:after {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: translate(-50%, -50%) rotate(40deg);
            transform: translate(-50%, -50%) rotate(40deg);
}
.arrowBox .next {
    background-color: #304861;
}
.arrowBox .next:hover {
    background-color: #6F94AB;
}
.arrowBox .next:before {
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transform: translate(-50%, -50%) rotate(-40deg);
            transform: translate(-50%, -50%) rotate(-40deg);
}
.arrowBox .next:after {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: translate(-50%, -50%) rotate(40deg);
            transform: translate(-50%, -50%) rotate(40deg);
}

/*header*/
header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 70px;
    z-index: 50;
    background-color: #304860;
    border-bottom: 1px solid #dedfe0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
header.homeTop, header.page404header {
    background-color: rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
header.homeTop .logo a, header.page404header .logo a {
    color: #fff;
}
header.homeTop .menu > li .menuUrl, header.page404header .menu > li .menuUrl {
    color: #fff;
}

header.homeTop .logo img {
    filter: brightness(0) invert(1);
}


header.homeTop .menu > li .menuUrl:before, header.page404header .menu > li .menuUrl:before {
    background-color: #fff;
}
@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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: none;
    padding: 0;
}
header .logo {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-left: 50px;
    padding: 0 20px;
}
@media (max-width: 1600px) {
    header .logo {
        margin-left: 0;
    }
}
@media (max-width: 1360px) {
    header .logo {
        padding: 0 5px;
    }
}
header .logo 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: 100%;
    height: 70px;
    font-size: 30px;
    font-weight: 500;
    color: #5f5f5f;
    letter-spacing: 5px;
}
@media (max-width: 1360px) {
    header .logo a {
        letter-spacing: 3px;
    }
}
@media (max-width: 1210px) {
    header .logo a {
        letter-spacing: 0;
    }
}
header .midBox {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

.languageOutBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.languageOutBox.inMenu .languageBox {
    position: relative;
}
.languageOutBox.inMenu .languageBox .main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 165px;
    height: 70px;
}
@media (max-width: 1440px) {
    .languageOutBox.inMenu .languageBox .main {
        width: 125px;
    }
}
.languageOutBox.inMenu .languageBox .icon {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 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;
    background-color: #282828;
    color: #fff;
}
.languageOutBox.inMenu .languageBox .icon svg {
    width: 17px;
    height: 17px;
}
.languageOutBox.inMenu .languageBox .title {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: calc(100% - 40px);
    padding: 0 20px;
    background-image: url(../images/header_btn_1.jpg);
    background-size: cover;
    font-size: 12px;
    font-weight: normal;
    font-family: "Roboto", sans-serif;
    color: #abacad;
    letter-spacing: 1px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.languageOutBox.inMenu .languageBox .title:hover {
    opacity: 0.9;
}
@media (max-width: 1440px) {
    .languageOutBox.inMenu .languageBox .title {
        padding: 0 5px;
    }
}
.languageOutBox.inMenu .languageBox ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 10px 0;
    background-color: #555;
    display: none;
}
.languageOutBox.inMenu .languageBox ul a {
    padding: 5px 10px;
    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;
    background-color: #555;
    color: #abacad;
}
.languageOutBox.inMenu .languageBox ul a:hover {
    color: #6F94AB;
}
.languageOutBox.inMenu .contactBox a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 165px;
    height: 70px;
}
@media (max-width: 1300px) {
    .languageOutBox.inMenu .contactBox a {
        width: 165px;
    }
}
.languageOutBox.inMenu .contactBox .icon {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 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;
    background-color: #6F94AC;
    color: #fff;
}
.languageOutBox.inMenu .contactBox .icon svg {
    width: 22px;
    height: 16px;
}
.languageOutBox.inMenu .contactBox .title {
    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;
    width: calc(100% - 40px);
    padding: 0 20px;
    background-image: url(../images/header_btn_3.jpg);
    background-size: cover;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 1px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.languageOutBox.inMenu .contactBox .title:hover {
    opacity: 0.9;
}
@media (max-width: 1300px) {
    .languageOutBox.inMenu .contactBox .title {
        padding: 0 5px;
    }
}
.languageOutBox.inMenu_mobile {
    position: absolute;
    top: 0;
    right: 65px;
    height: 65px;
}
.languageOutBox.inMenu_mobile .languageBox {
    position: relative;
}
.languageOutBox.inMenu_mobile .languageBox .icon {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 40px;
    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;
    background-color: #282828;
    color: #fff;
}
.languageOutBox.inMenu_mobile .languageBox .icon svg {
    width: 17px;
    height: 17px;
}
.languageOutBox.inMenu_mobile .languageBox .title {
    display: none;
}
.languageOutBox.inMenu_mobile .languageBox ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 145px;
    padding: 10px 0;
    background-color: #555;
    display: none;
}
.languageOutBox.inMenu_mobile .languageBox ul a {
    padding: 5px 10px;
    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;
    background-color: #555;
    color: #abacad;
}
.languageOutBox.inMenu_mobile .languageBox ul a:hover {
    color: #6F94AB;
}
.languageOutBox.inMenu_mobile .contactBox .icon {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 40px;
    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;
    background-color: #6F94AC;
    color: #fff;
}
.languageOutBox.inMenu_mobile .contactBox .icon svg {
    width: 22px;
    height: 16px;
}
.languageOutBox.inMenu_mobile .contactBox .title {
    display: none;
}
.languageOutBox.inMobile {
    padding-top: 25px;
    padding-bottom: 10px;
    -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;
}
.languageOutBox.inMobile .languageBox {
    margin: 5px;
    position: relative;
}
.languageOutBox.inMobile .languageBox .main {
    position: relative;
    display: block;
    width: 190px;
    height: 40px;
    border: 1px solid #fff;
}
.languageOutBox.inMobile .languageBox .main:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 13px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-family: FontAwesome;
    color: #fff;
}
.languageOutBox.inMobile .languageBox .icon {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 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;
    color: #fff;
}
.languageOutBox.inMobile .languageBox .icon svg {
    width: 17px;
    height: 17px;
}
.languageOutBox.inMobile .languageBox .title {
    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;
    width: 100%;
    height: 100%;
    padding: 0 20px;
    font-size: 12px;
    font-weight: normal;
    font-family: "Roboto", sans-serif;
    color: #fff;
    letter-spacing: 1px;
}
@media (max-width: 1260px) {
    .languageOutBox.inMobile .languageBox .title {
        padding: 0 10px;
    }
}
.languageOutBox.inMobile .languageBox ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 10px 0;
    background-color: #555;
    background-color: #6F94AC;
    display: none;
    z-index: 1;
}
.languageOutBox.inMobile .languageBox ul a {
    padding: 5px 10px;
    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;
    color: #fff;
}
.languageOutBox.inMobile .languageBox ul a:hover {
    color: #6F94AB;
}
.languageOutBox.inMobile .contactBox {
    margin: 5px;
}
.languageOutBox.inMobile .contactBox a {
    display: block;
    position: relative;
    width: 190px;
    height: 40px;
    border: 1px solid #fff;
    background-color: #fff;
}
.languageOutBox.inMobile .contactBox .icon {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 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;
    color: #6F94AC;
}
.languageOutBox.inMobile .contactBox .icon svg {
    width: 22px;
    height: 16px;
}
.languageOutBox.inMobile .contactBox .title {
    position: relative;
    padding: 0 20px;
    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;
    font-size: 16px;
    font-weight: 400;
    color: #222;
    letter-spacing: 1px;
}
@media (max-width: 1260px) {
    .languageOutBox.inMobile .contactBox .title {
        padding: 0 10px;
    }
}

/*menu*/
.menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.menu > li {
    position: relative;
    display: inline-block;
}
.menu > li .menuUrl {
    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: 16px;
    color: #fff;
    letter-spacing: 1px;
}
@media (max-width: 1600px) {
    .menu > li .menuUrl {
        padding: 5px 10px;
    }
}
@media (max-width: 1410px) {
    .menu > li .menuUrl {
        /*padding: 5px;*/
    }
}
@media (max-width: 1300px) {
    .menu > li .menuUrl {
        /*letter-spacing: 0px;*/
    }
}
.menu > li .menuUrl:hover:before, .menu > li .menuUrl.current:before {
    width: 100%;
}
.menu > li .menuUrl:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #282828;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.menu .submenu {
    display: none;
    position: absolute;
    left: 50%;
    top: 100%;
    z-index: 99;
    margin-left: -75px;
    width: 150px;
    text-align: center;
}
.menu .submenu a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #dadada;
    font-size: 15px;
    color: #666;
    background-color: #fff;
}
.menu .submenu a:hover {
    color: #fff;
    background-color: #304861;
}

/*手機menu*/
.m_menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    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);
}
@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;
    margin-left: 20px;
}
.m_menu .m_logo 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: 100%;
    height: 65px;
    font-size: 20px;
    font-weight: 500;
    color: #5f5f5f;
    letter-spacing: 3px;
}
.m_menu .controlBox {
    position: relative;
    z-index: 99;
    height: 65px;
    background-color: #304860;
}
.m_menu .controlBox > a.main {
    position: absolute;
    right: 0;
    top: 0;
    width: 65px;
    height: 65px;
    background-color: #476070;
}
.m_menu .controlBox > a.main span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-top: 1px;
    width: 30px;
    height: 2px;
    background-color: #fff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.m_menu .controlBox > a.main span:before, .m_menu .controlBox > a.main span:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}
.m_menu .controlBox > a.main span:before {
    top: -9px;
}
.m_menu .controlBox > a.main span:after {
    bottom: -9px;
}
.m_menu .controlBox .btn_cart {
    display: inline-block;
    vertical-align: middle;
}
.m_menu .controlBox .right {
    float: right;
    line-height: 60px;
    margin-right: 10px;
}
.m_menu .controlBox .right a {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
    font-size: 13px;
    color: #fff;
}
.m_menu .controlBox .right a em {
    display: none;
}
.m_menu .controlBox .right i {
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 20px;
    color: #fff;
    text-align: center;
    border-radius: 100%;
    background: #799A1B;
}
.m_menu .controlBox .right b {
    position: absolute;
    top: 6px;
    right: -5px;
    display: block;
    border-radius: 5px;
    line-height: normal;
    padding: 3px 5px;
    font-size: 13px;
    color: #fff;
    background-color: #C40000;
}
.m_menu .controlBox .language:hover .submenu {
    display: block;
}

/*手機menu內容*/
.hideBox {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 11;
    width: 100%;
    padding: 65px 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#650e13+0,b2181b+100 */
    background-color: rgba(48, 72, 96, 0.9);
    z-index: 100;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    pointer-events: none;
    opacity: 0;
}
.hideBox.active {
    -webkit-transform: translate(0);
            transform: translate(0);
    pointer-events: auto;
    opacity: 1;
}
.hideBox .sp {
    display: none;
    padding: 10px;
    font-size: 13px;
    color: #fff;
    background-color: #c80303;
}
.hideBox .closeBtn {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    width: 65px;
    height: 65px;
}
.hideBox .closeBtn:before, .hideBox .closeBtn:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -1px;
    margin-left: -15px;
    width: 30px;
    height: 2px;
    background-color: #fff;
}
.hideBox .closeBtn:before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}
.hideBox .closeBtn:after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
.hideBox .infoBox {
    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;
}
.hideBox .infoBox .info {
    padding: 3px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}
.hideBox .infoBox .title {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-right: 5px;
    font-weight: 700;
}
.hideBox .infoBox .text a {
    position: relative;
    font-size: 15px;
    font-weight: 400;
    color: #dadada;
}
.hideBox .infoBox .text a:hover {
    color: #fff;
}
.hideBox .infoBox .text a:hover:before {
    width: 100%;
    background-color: #fff;
}
.hideBox .infoBox .text a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #dadada;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.hideBox .socialBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.hideBox .socialBox .title {
    padding-right: 0;
    padding-top: 5px;
    padding-bottom: 10px;
}

.nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.nav li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.nav a {
    position: relative;
    display: block;
    padding: 15px 10px;
    font-size: 16px;
    color: #fff;
    text-align: center;
}
.nav a i {
    position: absolute;
    right: 10px;
    top: 50%;
    display: block;
    margin-top: -7px;
}
.nav .dropDown > a::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 20px;
    font-family: FontAwesome;
}
.nav .submenu {
    display: none;
}
.nav .submenu a {
    padding: 10px 20px;
}
.nav .submenu a:hover {
    background-color: #999;
}

/*banner*/
.bannerArea {
    clear: both;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.bannerArea .wrap {
    width: 100%;
    max-width: 100%;
    padding: 0;
}
.bannerArea.ins #banner > li {
    position: relative;
}
@media (max-width: 1180px) {
    .bannerArea.ins .brand .Img {
        height: 540px;
    }
}
@media (max-width: 1180px) {
    .bannerArea.ins .showroom .Img {
        height: 360px;
    }
}
.bannerArea.ins .Img img {
    display: block;
    width: 100%;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}
@media (max-width: 1180px) {
    .bannerArea.ins .Img {
        height: 400px;
    }
    .bannerArea.ins .Img img {
        width: auto;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
    }
}
.bannerArea.ins .videoBox {
    position: relative;
    min-height: 360px;
}
.bannerArea.ins .videoBox.hasImg {
    padding-top: 44.7%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.bannerArea.ins .videoBox.hasImg video {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
@media (max-width: 960px) {
    .bannerArea.ins .videoBox.hasImg video {
        width: auto;
        height: 100%;
    }
}
@media (max-width: 640px) {
    .bannerArea.ins .videoBox video {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        width: auto;
        height: 100%;
    }
}
.bannerArea.ins .Txt {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    z-index: 1;
}
.bannerArea.ins .textBox {
    width: 100%;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}
.bannerArea.ins .textBox p {
    letter-spacing: 1px;
}
.bannerArea.ins .underLine {
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.bannerArea.ins .center {
    text-align: center;
}
.bannerArea.ins .title {
    font-size: 40px;
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
    letter-spacing: 6px;
}
@media (max-width: 960px) {
    .bannerArea.ins .title {
        font-size: 24px;
        letter-spacing: 1px;
    }
}

/*文字跑馬燈*/
.linkArea {
    overflow: hidden;
}
@media (max-width: 767px) {
    .linkArea {
        padding-top: 20px;
        padding-bottom: 60px;
    }
}
.linkArea.show li {
    -webkit-transition: all 0.6s linear;
    transition: all 0.6s linear;
    -webkit-transform: translate(0);
            transform: translate(0);
    opacity: 1;
}
.linkArea .wrap {
    max-width: none;
    padding: 0;
}
.linkArea .linkList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media (max-width: 767px) {
    .linkArea .linkList {
        display: block;
    }
}
.linkArea li {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
    opacity: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
@media (max-width: 767px) {
    .linkArea li {
        -webkit-transform: translateY(20px);
                transform: translateY(20px);
        padding: 10px 20px;
    }
}
.linkArea .item {
    position: relative;
}
.linkArea .item:hover .Img img {
    opacity: 1;
}
.linkArea .Img {
    background-color: #000;
    overflow: hidden;
}
.linkArea .Img img {
    display: block;
    width: 100%;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    opacity: 0.7;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
}
.linkArea .title {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.linkArea .title a {
    font-size: 23px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 3px;
    white-space: nowrap;
}

.goTop {
    cursor: pointer;
    position: fixed;
    right: 20px;
    bottom: 50px;
    width: 40px;
    height: 40px;
    background-image: url(../images/bg_company_title.jpg);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 9999;
}
.goTop:hover {
    opacity: 0.9;
}
.goTop::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    top: 15px;
    left: 50%;
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
}

/*頁尾資訊*/
footer .topArea .wrap {
    max-width: none;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media (max-width: 767px) {
    footer .topArea .wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }
}
footer .topArea .left {
    padding: 55px 80px;
    width: 33.33%;
    background-color: #1c1d21;
}
footer .topArea .left.show .logo,
footer .topArea .left.show .infoBox,
footer .topArea .left.show .socialBox,
footer .topArea .left.show .btnBox {
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
    -webkit-transform: translate(0);
            transform: translate(0);
    opacity: 1;
}
footer .topArea .left.show .infoBox {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
}
footer .topArea .left.show .socialBox {
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
}
footer .topArea .left.show .btnBox {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s;
}
@media (max-width: 1400px) {
    footer .topArea .left {
        padding: 55px 30px;
    }
}
@media (max-width: 1180px) {
    footer .topArea .left {
        width: 50%;
    }
}
@media (max-width: 767px) {
    footer .topArea .left {
        padding: 40px 20px;
        width: 100%;
    }
}
footer .topArea .right {
    /*padding: 55px 80px;*/
    padding: 20px;
    width: 66.67%;
    background-color: #232428;
}
footer .topArea .right.show .footerLinkList li {
    -webkit-transition: all 0.6s linear;
    transition: all 0.6s linear;
    -webkit-transform: translate(0);
            transform: translate(0);
    opacity: 1;
}
@media (max-width: 1400px) {
    footer .topArea .right {
        /*padding: 55px 30px;*/
    }
}
@media (max-width: 1180px) {
    footer .topArea .right {
        width: 50%;
    }
}
@media (max-width: 767px) {
    footer .topArea .right {
        padding: 40px 20px;
        width: 100%;
    }
}
footer .bottomArea {
    background-color: #16171b;
}
footer .bottomArea .text {
    color: #6b6b6b;
    padding: 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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
}
@media (max-width: 640px) {
    footer .bottomArea .text {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
}
footer .bottomArea a {
    margin-left: 10px;
    color: #979797;
}
@media (max-width: 640px) {
    footer .bottomArea a {
        margin-top: 5px;
        margin-left: 0;
    }
}
footer .bottomArea a:hover {
    color: #fff;
    text-decoration: underline;
}
footer .logo {
    margin-bottom: 20px;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
}
footer .logo a {
    font-size: 23px;
    font-weight: 400;
    color: #fff;
}
footer .infoBox {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
}
footer .infoBox .info {
    padding: 6px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    letter-spacing: 1px;
}
footer .infoBox .title {
    padding-right: 5px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}
footer .infoBox .text a {
    position: relative;
    font-size: 15px;
    font-weight: 400;
    color: #dadada;
}
footer .infoBox .text a:hover {
    color: #fff;
}
footer .infoBox .text a:hover:before {
    width: 100%;
    background-color: #fff;
}
footer .infoBox .text a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #dadada;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
footer .socialBox {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
}
footer .btnBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 20px -5px 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
}
footer .btnBox .btn.map a {
    color: #fff;
    background-color: #304861;
}
footer .btnBox .btn.map a:hover {
    background-color: rgba(160, 144, 123, 0.8);
}
footer .btnBox .btn.map .icon {
    height: 20px;
}
footer .btnBox .btn.map .icon svg {
    width: 14px;
    height: 20px;
}
footer .btnBox .btn.mail a {
    color: #fff;
    background-color: #304861;
}
footer .btnBox .btn.mail a:hover {
    background-color: rgba(160, 144, 123, 0.8);
}
footer .btnBox .btn.mail .icon svg {
    width: 16px;
    height: 12px;
}
footer .btnBox .btn a {
    margin: 5px;
    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;
    width: 175px;
    height: 40px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
}
footer .btnBox .btn .icon {
    position: absolute;
    top: 50%;
    left: 12px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}

.footerLinkList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
@media (max-width: 1260px) {
    .footerLinkList {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
}
.footerLinkList > li {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
    opacity: 0;
}
@media (max-width: 767px) {
    .footerLinkList > li {
        -webkit-transform: translateY(20px);
                transform: translateY(20px);
    }
}
@media (min-width: 1261px) {
    .footerLinkList > li:not(:first-child) {
        padding-left: 20px;
    }
}
.footerLinkList > li.current .hasLinks::after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
.footerLinkList .fLinkTitle {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}
@media (min-width: 1261px) {
    .footerLinkList .fLinkTitle {
        margin-bottom: 10px;
    }
}
.footerLinkList a {
    position: relative;
    display: inline-block;
    font-size: 15px;
    font-weight: 300;
    color: #dadada;
    padding-top: 3px;
    padding-bottom: 3px;
}
@media (max-width: 1260px) {
    .footerLinkList a {
        display: block;
        padding: 5px;
    }
}
@media (min-width: 1261px) {
    .footerLinkList a:hover {
        color: #fff;
    }
    .footerLinkList a:hover:before {
        width: 100%;
        background-color: #fff;
    }
}
.footerLinkList a:before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0%;
    height: 1px;
    background-color: #dadada;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.fLinkTitle {
    position: relative;
}
@media (max-width: 1260px) {
    .fLinkTitle {
        cursor: pointer;
        border-bottom: 1px solid #c7c9c9;
        padding: 8px 20px 8px 8px;
        margin: 3px 0;
    }
}
@media (max-width: 1260px) {
    .fLinkTitle.hasLinks::before, .fLinkTitle.hasLinks::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 5px;
        z-index: 1;
        width: 11px;
        height: 1px;
        background-color: #c7c9c9;
        -webkit-transition: 0.3s ease-out;
        transition: 0.3s ease-out;
    }
    .fLinkTitle.hasLinks::after {
        -webkit-transform: rotate(90deg);
                transform: rotate(90deg);
    }
}

@media (min-width: 1261px) {
    .fLinks {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
}
@media (max-width: 1260px) {
    .fLinks {
        display: none;
        padding: 5px 10px 20px;
    }
}

.privacyArea {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    -webkit-box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
            box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
    padding: 40px 0 25px;
    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;
}
.privacyArea .text {
    color: #fff;
    line-height: 1.5;
    letter-spacing: 0.5px;
}
.privacyArea .text a {
    color: #304861;
    display: inline-block;
    margin-top: 8px;
    text-decoration: underline;
}
.privacyArea .text a:hover {
    color: #304861;
}
.privacyArea .btn {
    margin-left: 25px;
    padding-top: 0;
}
.privacyArea .btn a {
    display: inline-block;
    padding: 15px 35px;
}
.privacyArea .btn a:hover {
    color: #fff;
}
@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 {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 5;
    width: 100%;
    background-color: #000;
}
@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;
}

/*share*/
.socialBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.socialBox .title {
    padding-right: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}
.socialBox a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin: 0 5px;
    font-size: 15px;
    color: #fff;
    text-align: center;
}
.socialBox a:hover {
    opacity: 0.8;
}



/*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: #304861;
}
@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: 30px 0;
}

.titleBox {
    position: relative;
    margin-bottom: 30px;
    text-align: center;
}
.titleBox .title {
    font-size: 36px;
    font-weight: 400;
    color: #393939;
}
@media (max-width: 640px) {
    .titleBox .title {
        font-size: 22px;
    }
}
.titleBox .subTitle {
    font-size: 23px;
    font-weight: 300;
}
@media (max-width: 640px) {
    .titleBox .subTitle {
        font-size: 18px;
    }
}

.bread {
    position: absolute;
    right: 10px;
    top: 25px;
    font-size: 12px;
    color: #bbb;
}
@media (max-width: 767px) {
    .bread {
        display: none;
    }
}
.bread a {
    color: #bbb;
}
.bread a i {
    font-size: 20px;
}
.bread span {
    padding: 0 3px;
    color: #bbb;
}

.mainArea .contentBox {
    clear: both;
}

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

/*側邊標題字*/
.sectionTitle {
    margin-bottom: 20px;
    padding: 5px;
    border-bottom: 1px solid #d6d6d6;
    font-weight: 400;
    font-size: 15px;
    color: #061540;
}
.sectionTitle strong {
    display: block;
    position: relative;
    font-weight: 400;
}
.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;
    }
}
/*類別*/
.classArea {
    background-color: #ececec;
}
.classArea .wrap {
    padding: 0;
    max-width: 1290px;
}

.classItemBox {
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
}
.classItemBox > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
@media (max-width: 1023px) {
    .classItemBox > ul {
        display: none;
    }
}
.classItemBox > ul li {
    width: 33.33%;
    padding: 5px;
}
.classItemBox > ul a {
    position: relative;
    display: block;
    padding: 17px 15px;
    font-size: 15px;
    font-weight: 500;
    color: #595959;
    letter-spacing: 0.5px;
    text-align: center;
    background-color: #ddd;
}
.classItemBox > ul a.current, .classItemBox > ul a:hover {
    color: #000;
    background-color: #fff;
}
.classItemBox > ul a.current:before, .classItemBox > ul a:hover:before {
    width: 100%;
}
.classItemBox > ul a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: #6F94AE;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.classRowBox {
    position: relative;
    z-index: 3;
}
.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;
}
@media (max-width: 1023px) {
    .classRowBox > ul {
        display: none;
    }
}
.classRowBox > ul li {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.classRowBox > ul a {
    position: relative;
    display: block;
    padding: 17px 15px;
    font-size: 15px;
    font-weight: 500;
    color: #595959;
    letter-spacing: 0.5px;
    text-align: center;
}
.classRowBox > ul a.current, .classRowBox > ul a:hover {
    color: #000;
    background-color: #fff;
}
.classRowBox > ul a.current:before, .classRowBox > ul a:hover:before {
    width: 100%;
}
.classRowBox > ul a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: #6F94AE;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.classColumnBox {
    position: relative;
    z-index: 3;
}
@media (max-width: 1023px) {
    .classColumnBox > ul {
        display: none;
    }
}
.classColumnBox > ul > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    color: #010101;
}
.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: #777;
}
.classColumnBox > ul a.current, .classColumnBox > ul a:hover {
    color: #304861;
}
.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: #304861;
}
.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: #304861;
}
.mClassLink > ul a {
    position: relative;
    z-index: 1;
    display: block;
    padding: 14px 20px;
    color: #000;
    font-size: 15px;
    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: #304861;
}

.pageBox {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    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 #304861;
    background-color: #304861;
    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 #304861;
    background-color: #304861;
    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 #304861;
    font-size: 13px;
    color: #304861;
}
.tagBox a:hover {
    color: #fff;
    background-color: #304861;
}
.tagBox a.current {
    color: #fff;
    background-color: #304861;
}
.tagBox a.current:before {
    content: "";
    margin-right: 5px;
    font-family: FontAwesome;
    font-size: 12px;
}

/*頁籤*/
.tab {
    margin-top: 40px;
}
.tab a {
    display: block;
    float: left;
    padding: 12px 10px;
    font-size: 15px;
    color: #1c1c1c;
}
.tab a.current {
    border: 1px solid #c0c0c0;
    border-top: 1px solid #c0c0c0;
    border-bottom: 1px solid #f8f3f0;
    -webkit-box-shadow: inset 0 3px 5px -2px #cecece;
            box-shadow: inset 0 3px 5px -2px #cecece;
}

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

/*側邊_menu*/
.side_menu {
    margin-bottom: 50px;
}
.side_menu li {
    position: relative;
    border-bottom: 1px solid #e1e1e1;
}
.side_menu li > a {
    display: block;
    padding: 10px 15px;
    font-size: 15px;
}
.side_menu li > a.current {
    color: #fff;
    background-color: #8c8c8c;
}
.side_menu li > a b {
    margin-left: 10px;
    font-weight: 400;
    font-size: 13px;
    color: #808080;
}
.side_menu dl {
    padding-left: 25px;
}
.side_menu dl a {
    display: block;
    padding: 10px 15px;
    font-size: 15px;
}
.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 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 #a5a5a5;
    border-radius: 50%;
    font-size: 20px;
    color: #a5a5a5;
    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: 15px;
    line-height: 1.5;
    font-weight: bold;
}
.side_news .Txt a:hover {
    text-decoration: underline;
}
.side_news .Txt b {
    display: block;
    margin-top: 5px;
    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: 15px;
    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: #304861;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.btn1 a:hover {
    border-color: #304861;
}
.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;
}
.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 {
    position: relative;
    background-color: #000;
    overflow: hidden;
}
.imh_zoom img {
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -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*/
.page404 {
    width: 100%;
    padding: 70px 0;
    background-image: url(../images/bg_404.jpg);
    background-size: cover;
}
.page404 .wrap {
    min-height: 720px;
    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;
}
@media (max-width: 1180px) {
    .page404 .wrap {
        min-height: calc(100vh - 140px);
    }
}
.page404 .Img img {
    display: block;
    width: 100%;
}
.page404 .Txt {
    padding: 35px 0 25px;
    font-weight: 400;
    color: #304860;
    text-align: center;
}
@media (max-width: 480px) {
    .page404 .Txt {
        padding: 15px 0 15px;
    }
}
.page404 .title {
    font-size: 30px;
}
@media (max-width: 480px) {
    .page404 .title {
        font-size: 20px;
    }
    .page404 .title span {
        display: block;
    }
}
.page404 .text {
    margin-top: 15px;
    font-size: 20px;
}
@media (max-width: 480px) {
    .page404 .text {
        font-size: 14px;
    }
}
.page404 .btnBox {
    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;
}
.page404 .btnBox .btn {
    padding: 10px 13px;
}
@media (max-width: 480px) {
    .page404 .btnBox .btn {
        padding: 10px 5px;
    }
}
.page404 .btnBox a {
    width: 175px;
    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;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    background-color: #304861;
}
@media (max-width: 480px) {
    .page404 .btnBox a {
        width: 130px;
    }
}