@charset "utf-8"; /* CSS Document */
@import url(reset.css); @import url(font-awesome.min.css); * {
    margin: 0;
    padding: 0;
    font-family: 'Aldrich', 微軟正黑體, sans-serif;
    /* list-style-type: none; */
}

body {
    /* background: #000000; */
    font-family: 'Aldrich', 微軟正黑體, sans-serif;
    font-size: 13px;
    -webkit-print-color-adjust: exact;
}

*,::after,::before {
    box-sizing: inherit;
}


/*css3*/
a {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

a {
    cursor: pointer;
    color: #898989;
}

a:hover {
    color: #e60012;
}

[class*='col-'] {
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.col-1 {
    float: left;
    width: 100%;
}

.col-2 {
    float: left;
    width: 50%;
}

.col-3 {
    float: left;
    width: 33.33%;
}

.col-4 {
    float: left;
    width: 25%;
}

.col-5 {
    float: left;
    width: 20%;
}

.b-box {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.btn_color1 {
    background: #E60012;
    /* Old browsers */
    background: -moz-linear-gradient(top, #FF2E3F 0%, #E60012 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FF2E3F ), color-stop(100%,#E60012));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #FF2E3F 0%,#E60012 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #6c7c00 0%,#8da300 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #6c7c00 0%,#8da300 100%);
    /* IE10+ */
    background: linear-gradient(to bottom, #FF2E3F 0%,#E60012 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6c7c00', endColorstr='#8da300',GradientType=0 );
    /* IE6-9 */
}

a.btn_color1:hover {
    background: #E60012;
}

a.btn_color2 {
    background: #4ba0c1;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIxJSIgc3RvcC1jb2xvcj0iIzRiYTBjMSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDhhYzEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top, #4ba0c1 1%, #008ac1 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#4ba0c1), color-stop(100%,#008ac1));
    background: -webkit-linear-gradient(top, #4ba0c1 1%,#008ac1 100%);
    background: -o-linear-gradient(top, #4ba0c1 1%,#008ac1 100%);
    background: -ms-linear-gradient(top, #4ba0c1 1%,#008ac1 100%);
    background: linear-gradient(to bottom, #4ba0c1 1%,#008ac1 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4ba0c1', endColorstr='#008ac1',GradientType=0 );
}

a.btn_color2:hover {
    background: #398cb1;
}

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

textarea {
    -webkit-appearance: none;
}

.outerWrap {
    position: relative;
    background: #FFF;
}

.wrap {
    width: 1160px;
    margin: 0 auto;
}

#gmap {
    display: none;
    height: 400px;
}

.label {
    padding: 5px 7px;
    color: #FFF;
    background: rgba(0,0,0,0.8);
}

/*購物車*/
.cartArea {
    display: none;
    width: 300px;
    background: #FFF;
    border: 5px solid #000;
    border-radius: 10px;
    position: fixed;
    top: 40px;
    left: 50%;
    margin-left: -150px;
    z-index: 999;
}

.cartArea .wrap {
    position: relative;
    width: auto;
    padding: 40px 10px;
}

.cartArea .countBox {
    margin-bottom: 25px;
    font-size: 13px;
    color: #333;
    text-align: right;
}

.cartArea .countBox b {
    font-size: 18px;
    color: #E60012;
}

.cartArea .countBox b em {
    font-weight: normal;
    font-size: 12px;
    color: #E60012;
}

.cartArea .countBox a.btn_pay {
    display: block;
    float: right;
    margin-left: 15px;
    padding: 7px 15px;
    font-family: 'Aldrich', 微軟正黑體, sans-serif;
    font-size: 15px;
    color: #FFF;
    border-radius: 5px;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
}

.cartArea ul {
    clear: both;
    max-height: 150px;
    overflow-y: auto;
}

.cartArea ul li {
    position: relative;
    padding: 10px;
    border-bottom: 1px solid #EEE;
    margin-bottom: 10px;
    text-align: left;
}

.cartArea ul li strong {
    margin-bottom: 10px;
    display: block;
    font-size: 13px;
    padding-right: 20px;
}

.cartArea ul li strong a {
    display: block;
    color: #272727;
}

.cartArea ul li b {
    display: block;
    float: left;
    font-size: 13px;
    font-weight: normal;
    padding-right: 10px;
}

.cartArea ul li i.icon-remove {
    cursor: pointer;
    display: block;
    font-size: 20px;
    color: #d92047;
    position: absolute;
    right: 15px;
    top: 10px;
}

/*訂單查詢*/
.orderCheckArea {
    display: none;
    width: 300px;
    background: #FFF;
    border: 5px solid #000;
    border-radius: 10px;
    position: fixed;
    top: 40px;
    left: 50%;
    margin-left: -150px;
    z-index: 999;
}

.orderCheckArea .wrap {
    position: relative;
    width: auto;
    padding: 40px 10px;
    text-align: center;
}

#closeOrder, #closeCart {
    font-size: 30px;
    position: absolute;
    top: 5px;
    right: 10px;
}

.orderCheckArea input[type="text"], .orderCheckArea input[type="password"] {
    width: 100%;
    height: 40px;
    margin-bottom: 10px;
    border-radius: 4px;
    border: 2px solid #CCC;
    padding: 5px;
    box-sizing: border-box;
}

.orderCheckArea a.btn {
    margin-top: 10px;
    display: inline-block;
    font-size: 13px;
    color: #FFF;
    padding: 10px 20px;
    background: #151515;
    border-radius: 4px;
    font-family: 'Aldrich', 微軟正黑體, sans-serif;
}

.orderCheckArea a.btn:hover {
    background: #E60012;
    color: #FFF;
}

/*****網頁頭*****/
header {
    background: #ffffff;
    width: 100%;
    position: fixed;;
    left: 0;
    top: 0;
    z-index: 99;
}

/*logo*/
header h1 {
    width: 127px;
    position: relative;
    z-index: 49;
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -64px;
}

header h1 a {
    display: block;
    background: url(../img/logo.png) no-repeat center top;
    width: 127px;
    height: 90px;
    text-indent: -9999px;
}

header .leftBox {
    /* padding:2px 0; */
    float: left;
    position: relative;
    width: 40%;
    /*border-bottom: 1px solid #9fc7e2;*/
}

header .leftBox a {
    display: inline-block;
    margin: 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 20px;
    color: #FFFFFF;
    text-align: center;
    border: 2px solid #656766;
    /* border-radius: 100%; */
}

header .leftBox a b {
    display: none;
}

header .leftBox .Txt {
    font-family: 'Aldrich', 微軟正黑體, sans-serif;
    font-size: 21px;
    color: #656766;
    position: absolute;
    right: 0;
    top: 13px;
    letter-spacing: 1px;
}

header .rightBox {
    position: relative;
    float: right;
    width: 40%;
    text-align: right;
    /* padding-bottom:4px;
    border-bottom: 1px solid #9fc7e2;*/
    height: 42px;
}

header .rightBox .Txt {
    font-family: 'Aldrich', 微軟正黑體, sans-serif;
    font-size: 19px;
    color: #656766;
    letter-spacing: 1px;
    position: absolute;
    left: 0;
    top: 14px;
}

header .rightBox > a:first-child {
}

header .rightBox > a:hover {
    background: #86a90f;
    border-radius: 5px;
    color: #FFF;
}

header .rightBox > a.cartToggle {
    display: inline-block;
    font-size: 13px;
    color: #000000;
    padding: 5px 15px;
    border-radius: 0 0 8px 8px;
    background: #656766;
    /* Old browsers */
    background: -moz-linear-gradient(top, #4a330f 0%, #9d6c32 9%, #9d6c32 50%, #412707 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#656766), color-stop(9%,#919291), color-stop(50%,#ABACAB), color-stop(100%,#656766));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #656766 0%,#919291 9%,#ACADAC 50%,#656766 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #4a330f 0%,#9d6c32 9%,#9d6c32 50%,#412707 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #4a330f 0%,#9d6c32 9%,#9d6c32 50%,#412707 100%);
    /* IE10+ */
    background: linear-gradient(to bottom, #b1b1b1 0%,#e6e6e6 9%,#f3f3f3 50%,#b8b8b8 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4a330f', endColorstr='#412707',GradientType=0 );
    /* IE6-9 */
}

header .rightBox > a.cartToggle i {
    display: inline-block;
    margin-right: 8px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 18px;
    color: #1D1D1D;
    border: 2px solid #1D1D1D;
    border-radius: 100%;
}

header .rightBox > a.cartToggle b {
    display: inline-block;
    padding: 0 3px;
    font-size: 16px;
    color: #E60012;
}

.g_trans {
}

header .downBox {
    clear: both;
    position: relative;
}

header nav {
    text-align: center;
}

/*menu*/
ul.menu {
    display: inline-block;
    /* text-align:  center; */
    /* right:  0; */
    /* left:  0; */
    /* position:  absolute; */
    /* margin:  auto; */
    著作权归作者所有。 商业转载请联系作者获得授权,非商业转载请注明出处。 原文: https:// www.w3cplus.com/css/fighting-the-space-between-inline-block-elements © w3cplus.com;
    /*margin-left: 330px;*/}

ul.menu li {
    display: inline-block;
    height: 48px;
    text-align: center;
    margin: 0 auto;
    float: left;
    position: relative;
    -moz-transform-origin: bottom;
    -moz-transform: skewX(-10deg);
    -webkit-transform-origin: bottom;
    -webkit-transform: skewX(-10deg);
    -o-transform-origin: bottom;
    -o-transform: skewX(-10deg);
    -ms-transform-origin: bottom;
    -ms-transform: skewX(-10deg);
    transform-origin: bottom;
    transform: skewX(-10deg);
}

ul.menu li:before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

ul.menu li.break {
    margin-right: 254px;
}

ul.menu li > a {
    display: inline-block;
    font-family: 'Aldrich', 微軟正黑體, sans-serif;
    font-size: 18px;
    color: #222222;
    text-align: center;
    vertical-align: middle;
    min-width: 145px;
}

ul.menu li:hover {
    background: rgba(255, 255, 255, 1);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

ul.menu li:hover a {
    color: #b12c1f;
}

ul.menu li:hover a:after {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -3px;
    background: #b12c1f;
}

ul.menu li a:after {
    content: "";
    width: 0px;
    height: 3px;
    display: block;
    position: absolute;
    left: 50%;
    bottom: -3px;
    background: #b12c1f;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

ul.menu li.dropDown {
    position: relative;
}

ul.menu li.dropDown .submenu {
    display: none;
    width: 200px;
    box-shadow: 0 0 4px rgba(136, 136, 136, 0.6);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
}

ul.menu li.dropDown .submenu a {
    display: block;
    padding: 10px 20px;
    background: #FFF;
    border-top: #e8e8e8 1px solid;
    font-family: 'Aldrich', 微軟正黑體, sans-serif;
    font-size: 16px;
    color: #000;
}

ul.menu li.dropDown .submenu a:hover {
    background: #7dadc3;
    color: #FFF;
}

ul.menu li.dropDown .submenu a:first-child {
    border: none;
}

.m_menu {
    display: none;
}

/*****banner******/
.bannerArea {
    clear: both;
    background: #2f231f;
    position: relative;
}

div#bannerArea {
    /* height: 527px; */
}

.bannerArea:after {
    content: "";
    width: 100%;
    height: 100px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: -moz-linear-gradient(top, rgba(74,51,15,0) 0%, rgba(31,18,13,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(74,51,15,0)), color-stop(100%,rgba(31,18,13,1)));
    background: -webkit-linear-gradient(top, rgba(74, 51, 15, 0) 0%, rgb(255 255 255) 100%);
    background: -o-linear-gradient(top, rgba(74,51,15,0) 0%,rgba(31,18,13,1) 100%);
    background: -ms-linear-gradient(top, rgba(74,51,15,0) 0%,rgba(31,18,13,1) 100%);
    /*background: linear-gradient(to bottom, rgba(74,51,15,0) 0%,rgb(255, 255, 255) 100%);*/
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#004a330f', endColorstr='#1f120d',GradientType=0 );
}

.bannerArea .bx-wrapper .bx-controls-direction a {
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
    width: 62px !important;
    height: 62px !important;
    margin-top: -30px !important;
}

.bannerArea .bx-wrapper .bx-prev {
    background: url(../img/bx_arrow_prev.png) no-repeat !important;
}

.bannerArea .bx-wrapper .bx-next {
    background: url(../img/bx_arrow_next.png) no-repeat !important;
}

#banner img {
    display: block;
    width: 100%;
    padding-top: 90px;
}

.bannerArea .slides-pagination {
    bottom: 100px !important;
}

.bannerArea a.scrollDown {
    display: block;
    color: #FFF !important;
    text-align: center;
    width: 80px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    margin-left: -40px;
    z-index: 100;
}

.bannerArea a.scrollDown i {
    display: inline-block;
    text-align: center;
    font-size: 25px;
    color: #FFF;
    text-align: center;
}

/*頁尾資訊*/
footer {
    position: relative;
    background: #222;
    /* box-shadow: inset 0 100px 100px #000000; */
    padding: 20px 0px 0px 0px;
    font-family: 'Aldrich', 微軟正黑體, sans-serif;
}

footer .cr {
    margin: 0 auto;
    text-align: center;
    color: #fff;
    font-size: 12px;
    padding: 20px 0;
    border-top: 1px solid #525252;
}

footer .dec {
    text-align: center;
    border-bottom: 1px solid #656766;
    background: url(../img/bg_store.jpg) no-repeat;
    background-size: cover;
}

footer .dec img {
    display: inline-block;
    max-width: 100%;
}

footer .row {
    padding: 20px;
    margin: 0 auto;
}

footer .col-2 {
    padding-right: 15px;
    padding-left: 0px;
}

footer .col-2:first-child {
    /* padding-left: 12%; */
    border: none;
    box-shadow: none;
    padding-right: 2%;
}

footer .col-2:last-child {
    padding-right: 0;
}

footer h3 {
    position: relative;
    margin-bottom: 10px;
    color: #FFFFFF;
    font-size: 18px;
}

footer h3 strong {
    font-weight: normal;
}

.fb-like-box, .fb-like-box span, .fb-like-box.fb_iframe_widget span iframe {
    width: 100% !important;
}

footer .logo_down {
    float: left;
    margin-right: 15px;
    margin-left: 0px;
}

/*share this*/
.social {
    clear: both;
    margin-top: 20px;
}

.social span {
    display: inline-block;
}

.st_sina_large {
    width: 32px;
    height: 30px;
    background: #FFF;
    border-radius: 4px;
    position: relative;
}

.st_sina_large .stLarge {
    background-position: left -7px !important;
    background-repeat: no-repeat !important;
}

h5.copyright {
    font-size: 0.9rem;
    line-height: 1.8;
    font-weight: normal;
    color: #FFFFFF;
    font-family: 'Aldrich', 微軟正黑體, sans-serif;
}

footer .qrcode {
    float: left;
    margin-right: 15px;
}

ul.downMenu {
    overflow: hidden;
}

ul.downMenu li {
    float: left;
    width: 48%;
    padding: 0 4px;
}

ul.downMenu li a {
    display: block;
    padding: 4px 0;
    font-size: 0.9rem;
    color: #ffffff;
    font-family: 'Aldrich', 微軟正黑體, sans-serif;
    /*border-bottom: 1px solid #525252;*/
}


ul.downMenu li a:hover {
    color: #e60012;
}

ul.downMenu li a b {
    padding-left: 10px;
    font-size: 12px;
    font-weight: normal;
    text-transform: capitalize;
    font-family: 'Aldrich', sans-serif;
    color: #999;
}

ul.downMenu li a:hover b {
    /* text-decoration:underline; */
    color: #2e8cca;
}

.goTopBox {
    position: absolute;
    top: 55%;
    right: 0;
}

.goTop {
    display: none;
    background: url(../img/gotop.png) no-repeat;
    width: 30px;
    height: 45px;
    text-indent: -9999px;
    position: fixed;
}

/*********內頁**********/
/**********************/
.bannerAera {
    max-height: 300px;
    overflow: hidden;
}

.mainArea {
    padding: 40px 0px 0px 0px;
    background: #FFFFFF;
}

.mainArea .titleBox {
    position: relative;
}

.mainArea .titleBox:before {
    content: "";
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -10px;
}

.mainArea .titleBox h2 {
    font-family: 'Aldrich', 微軟正黑體, sans-serif;
    font-weight: normal;
    font-size: 27px;
    color: #ecd2b2;
    /* text-align:center; */
}

.mainArea .titleBox h2 strong {
    display: none;
}

.mainArea .titleBox h2 em {
    display: block;
    font-family: 'Aldrich', 微軟正黑體, sans-serif;
    font-size: 26px;
    font-weight: normal;
    color: #006838;
    margin-left: 30px;
}

.mainArea .titleBox h2:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    height: 100%;
    width: 6px;
    background: #006838;
    -moz-transform-origin: bottom;
    -moz-transform: skewX(-20deg);
    -webkit-transform-origin: bottom;
    -webkit-transform: skewX(-20deg);
    -o-transform-origin: bottom;
    -o-transform: skewX(-20deg);
    -ms-transform-origin: bottom;
    -ms-transform: skewX(-20deg);
    transform-origin: bottom;
    transform: skewX(-20deg);
}

/*網站導覽bread*/
.mainArea .titleBox .bread {
    font-family: 'Aldrich', 微軟正黑體, sans-serif;
    font-size: 12px;
    color: #656766;
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.mainArea .titleBox .bread a {
    color: #656766;
}

.mainArea .titleBox .bread a i {
    font-size: 20px;
}

.mainArea .titleBox .bread span {
    padding: 0 3px;
    color: #656766;
}

.mainArea .contentBox {
    clear: both;
    padding-top: 10px;
}

.contentBox .rightBox h3 {
    font-size: 18px;
    font-family: "微軟正黑體", "LiHei Pro", "新細明體", sans-serif;
    font-weight: bold;
    color: #003969;
 }

/*文字編輯器*/
.textEditor {
    padding: 20px 0;
    color: rgb(101, 103, 102);
    /*字的顏色*/
    font-family: 'Aldrich', 微軟正黑體, sans-serif;
    font-size: 16px;
    line-height: 1.8;
}

.textEditor a {
    color: #c95c30;
}

.textEditor img {
    max-width: 100%;
}

.textEditor ul {
    list-style: disc outside;
    padding-left: 30px;
}

.textEditor ol {
    list-style: decimal outside;
    padding-left: 30px;
}

.textEditor table {
    border-collapse: collapse;
    border: none;
}

.textEditor table th {
    padding: 5px;
    text-align: center;
    background: #598520;
    color: #FFF;
    border: 1px solid #DBDBDB;
}

.textEditor table td {
    padding: 5px;
    /* border: 1px solid #DBDBDB; */
}

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

.textEditor strong.title {
    display: block;
    font-size: 18px;
    font-weight: normal;
    color: #D64545;
}

.textEditor hr {
    clear: both;
    margin: 15px 0;
    height: 1px;
    border: none;
    background: #D5D5D5;
}

/*類別*/
.classBox {
    padding-top: 10px;
}

.m_classLink {
    display: none;
}

ul.classLink {
    text-align: left;
}

ul.classLink li {
    display: inline-block;
    /* padding: 8px 5px; */
}

ul.classLink li a {
    padding: 5px 10px;
    display: block;
    font-size: 15px;
    font-family: 'Aldrich', 微軟正黑體, sans-serif;
    position: relative;
    /* border-radius:4px; */
}

ul.classLink li a:hover {
    color: #006838;
    background: #f7f7f7;
}

ul.classLink li a.current {
    color: #006838;
    /* background: #f7f7f7; */
}

.newsclassLink li a.current:before {
    content: "\f0da";
    font-family: FontAwesome;
    margin-right: 10px;
}

.newsclassLink li a:before {
    content: "\f0da";
    font-family: FontAwesome;
    margin-right: 10px;
}

.m_classLink2{
  display:none;}

ul.classLink2{
  text-align:center;}

ul.classLink2 li{
  display:inline-block;
  /* padding: 1px 5px; */
  }

ul.classLink2 li a{
  padding:5px 10px;
  display:block;
  font-size:15px;
  font-family: Heiti TC, "微軟正黑體", "メイリオ", Microsoft JhengHei, Helvetica, Arial, sans-serif;
  position:relative;
  /* border-radius:4px; */
  }

ul.filters2 a:hover{
  color: #f08700 !important;
  /* background: #e47813; */
  }

ul.classLink2 li a.current{
  color: #11366d !important;
  /* background: #e47813; */
  }

/*標題字*/
.sectionTitle {
    clear: both;
    font-size: 18px;
    font-family: 'Aldrich', 微軟正黑體, sans-serif;
    font-weight: normal;
    color: #2e8cca;
}

.sectionTitle strong {
    color: #656766;
}

.sectionTitle:before {
    /* content:"【"; */
}

.sectionTitle:after {
    /* content:"】"; */
}

/******頁籤*******/
.tab {
    margin-top: 25px;
}

.tab a {
    display: block;
    float: left;
    padding: 8px 12px;
    font-size: 14px;
    font-family: 'Aldrich', 微軟正黑體, sans-serif;
    color: #2e8cca;
    background: #f7f7f7;
    margin-left: 3px;
    border-radius: 3px 3px 0 0;
}

.tab a.current {
    background: #f7f7f7;
}

ul.tabContent {
    padding: 20px 5px;
    border-top: #f7f7f7 1px solid;
}

ul.tabContent > li {
    display: none;
}

ul.tabContent li .textEditor {
    margin: 0;
}

ul.tabContent h3.sectionTitle {
    display: none;
}

/*側邊_menu*/
.side_menu {
    margin-bottom: 70px;
}

.side_menu ul {
    margin-top: 10px;
}

.side_menu ul li {
    border-bottom: 1px solid #f7f7f7;
    position: relative;
}

.side_menu ul li a {
    display: inline-block;
    padding: 10px 0px;
    font-size: 16px;
    font-family: 'Aldrich', 微軟正黑體, sans-serif;
    color: #656766;
    width: 100%;
    margin: 2px 0;
}

.side_menu ul li a:hover {
    background: #f7f7f7;    
}

.side_menu ul li a.current {
    color: #003969;
    /* background: #f7f7f7; */
}

.side_menu ul li a.current:before {
    content: "\f0da";
    color: #003969;
    font-family: FontAwesome;
    margin-right: 10px;
}

.side_menu ul li a:before {
    content: "\f0da";
    font-family: FontAwesome;
    margin-right: 10px;
}

.side_menu ul li a b {
    margin-left: 10px;
    font-size: 13px;
    font-weight: normal;
    color: #808080;
}

/*側邊_相簿*/
ul.side_album {
    margin-top: 30px;
    margin-bottom: 30px;
    margin-right: -10px;
}

ul.side_album li {
    float: left;
    width: 33.3%;
    padding: 0 10px 10px 0;
}

ul.side_album li a {
    display: block;
}

ul.side_album li a img {
    display: block;
    width: 100%;
}

/*側邊_線上訂房*/
.side_booking {
    margin-bottom: 30px;
}

.side_booking a {
    display: block;
    background: #f05b8f;
    border-radius: 4px;
    box-shadow: 0 1px 1px #8D2121;
    font-family: 'Aldrich', 微軟正黑體, sans-serif;
    font-size: 25px;
    font-weight: bold;
    color: #FFF;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
}

.side_booking a i {
    display: inline-block;
    font-size: 28px;
    padding: 10px 15px;
    margin-right: 15px;
    border-right: 1px solid #D33434;
    box-shadow: 1px 0 #F38A8A;
}

.side_booking a:hover {
    box-shadow: inset 0 3px 3px #8D2121;
}

/*側邊_聯絡資訊*/
.side_contactInfo {
    margin-bottom: 30px;
}

.side_contactInfo h3 {
    margin-bottom: 20px;
}

.side_contactInfo ul {
}

.side_contactInfo ul li {
    border-bottom: 1px solid #f7f7f7;
    position: relative;
    width: 100%;
    transition: all 0.4s linear;
}

.side_contactInfo ul li a:hover {
    background: #f7f7f7;
}

.side_contactInfo ul li a {
    display: inline-block;
    width: 100%;
    margin: 2px 0;
}

.side_contactInfo ul li a i {
    display: inline-block;
    margin: 5px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 20px;
    color: #656766;
    text-align: center;
    border: 1px solid #656766;
    border-radius: 100%;
}

.side_contactInfo ul li a b {
    font-size: 13px;
    font-family: 'Aldrich', 微軟正黑體, sans-serif;
    color: #656766;
    font-weight: normal;
}

/*側邊_房型*/
.side_room {
    margin-bottom: 60px;
}

.side_room .sectionTitle {
    margin-bottom: 15px;
}

.side_room ul {
}

.side_room ul li {
}

.side_room ul li .Img {
}

.side_room ul li .Img img {
    width: 100%;
}

.side_room ul li .Txt {
    margin-top: 5px;
}

.side_room ul li .Txt h3 strong a {
    font-family: 'Aldrich', 微軟正黑體, sans-serif;
    font-size: 16px;
    font-weight: normal;
}

.side_room ul li .Txt h3 strong a:hover {
}

.side_room ul li .Txt p {
    font-size: 13px;
    color: #858383;
    line-height: 1.8;
    max-height: 100px;
    overflow: hidden;
}

.side_room .bx-wrapper .bx-controls-direction a {
    width: 25px !important;
    height: 25px !important;
    top: 0 !important;
    right: 0;
    margin: 0 !important;
}

.side_room .bx-wrapper .bx-prev {
    left: auto;
    right: 25px !important;
    background: url(../img/photoswipe/bx_arrow_square_prev.png) !important;
}

.side_room .bx-wrapper .bx-next {
    background: url(../img/photoswipe/bx_arrow_square_next.png) !important;
}

/*側邊_分享*/
.side_share {
    clear: both;
    display: none;
    margin-bottom: 30px;
}

.side_share a {
    width: 100%;
    margin-top: 5px;
    display: block;
    padding: 15px 10px;
    font-size: 13px;
    font-weight: bold;
    line-height: 1;
    color: #FFF;
    text-align: center;
    text-shadow: 0 -1px 1px rgba(0,0,0,0.25);
    border-radius: 4px;
    -web-box-sizing: border-box;
    box-sizing: border-box;
}

.side_share a.line {
    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 a.fb {
    box-shadow: 0 0 0 1px #235c9b;
    border-top: 1px solid #8DCFF5;
    background: rgb(93,160,234);
    /* 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, rgba(93,160,234,1) 0%, rgba(61,140,230,1) 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(93,160,234,1)), color-stop(100%,rgba(61,140,230,1)));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(93,160,234,1) 0%,rgba(61,140,230,1) 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(93,160,234,1) 0%,rgba(61,140,230,1) 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(93,160,234,1) 0%,rgba(61,140,230,1) 100%);
    /* IE10+ */
    background: linear-gradient(to bottom, rgba(93,160,234,1) 0%,rgba(61,140,230,1) 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5da0ea', endColorstr='#3d8ce6',GradientType=0 );
    /* IE6-8 */
}

.side_share a.gPlus {
    box-shadow: 0 0 0 1px #874138;
    border-top: 1px solid #fd816b;
    background: rgb(214,81,48);
    /* Old browsers */
    /* IE9 SVG, needs conditional override of 'filter' to 'none' */
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Q2NTEzMCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkMDQ0MmIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top, rgba(214,81,48,1) 0%, rgba(208,68,43,1) 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(214,81,48,1)), color-stop(100%,rgba(208,68,43,1)));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(214,81,48,1) 0%,rgba(208,68,43,1) 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(214,81,48,1) 0%,rgba(208,68,43,1) 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(214,81,48,1) 0%,rgba(208,68,43,1) 100%);
    /* IE10+ */
    background: linear-gradient(to bottom, rgba(214,81,48,1) 0%,rgba(208,68,43,1) 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d65130', endColorstr='#d0442b',GradientType=0 );
    /* IE6-8 */
}

.side_share a i {
    padding-right: 5px;
    font-size: 18px;
}

.side_share a:active {
}

/*側邊_其他相關訊息*/
.side_news {
    margin-bottom: 60px;
}

.side_news ul {
    margin-top: 20px;
}

.side_news ul li {
    margin-bottom: 25px;
}

.side_news ul li .Img {
    float: left;
    margin-right: 12px;
    width: 60px;
    overflow: hidden;
}

.side_news ul li .Img img {
    height: 60px;
}

.side_news ul li .Txt {
    overflow: hidden;
}

.side_news ul li .Txt a {
    display: block;
    font-size: 14px;
    font-family: 'Aldrich', 微軟正黑體, sans-serif;
    font-weight: bold;
    line-height: 1.5;
}

.side_news ul li .Txt a:hover {
    /* text-decoration:underline; */
}

.side_news ul li .Txt b {
    display: block;
    font-size: 12px;
    color: #999;
    font-weight: normal;
    margin-top: 5px;
}

/*側邊_匯款通知按鈕*/
.side_notice {
    margin-bottom: 30px;
}

.side_notice a {
    display: inline-block;
    width: 49%;
    padding: 7px 0;
    font-family: 'Aldrich', 微軟正黑體, sans-serif;
    font-size: 16px;
    color: #FFF;
    text-align: center;
    box-shadow: 2px 2px 2px #CCC;
    border-radius: 3px;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
}

/*------css3動畫--------*/
@-webkit-keyframes upDown {
    0% {
        bottom: 40px;
        opacity: 1;
    }

    50% {
        bottom: 48px;
        opacity: 0.5;
    }

    100% {
        bottom: 40px;
        opacity: 1;
    }
}

@-moz-keyframes upDown {
    0% {
        bottom: 40px;
        opacity: 1;
    }

    50% {
        bottom: 48px;
        opacity: 0.5;
    }

    100% {
        bottom: 40px;
        opacity: 1;
    }
}

@keyframes upDown {
    from {
        bottom: 40px;
        opacity: 1;
    }

    50% {
        bottom: 48px;
        opacity: 0.5;
    }

    to {
        bottom: 40px;
        opacity: 1;
    }
}

.upDown {
    -webkit-animation: upDown ease-out 1s infinite;
    -moz-animation: upDown ease-out 1s infinite;
    -o-animation: upDown ease-out 1s infinite;
    animation: upDown ease-out 1s infinite;
}

.checkbox-inline input[type="checkbox"] {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.radio-inline input[type="radio"] {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.feathureArea ul li .Txt h3 a {
    overflow: hidden;
    text-overflow: ellipsis;
    /* white-space: nowrap; */
    width: 100%;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/**********適應性**********/
/************************/
@media (max-width: 1160px) {
    .outerWrap {
        width:100%;
    }

    .wrap {
        width: 100%;
        padding: 0 20px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -o-box-sizing: border-box;
        box-sizing: border-box;
    }

    .newsArea {
        padding-right: 0px;
        padding-left: 0px;
        background: url(../img/bg_store.jpg) no-repeat;
        background-size: cover;
    }

    /*banner*/
    .bannerArea {
        padding-top: 0px;
        margin-top: -2.3em;
    }

    .bannerArea .bx-wrapper .bx-controls-direction a {
        display: none;
    }

    .bannerArea a.scrollDown {
        display: none;
    }

    /*mobile menu*/
    header {
        display: none;
    }

    .m_menu {
        display: block;
        width: 100%;
        /* box-shadow: 0 2px 5px #C0C0C0; */
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
    }

    .m_menu .mask {
        display: none;
        background: rgba(255,255,255,0.7);
        position: fixed;
        width: 100%;
        height: 100%;
        padding-bottom: 50px;
        top: 0;
        left: 0;
    }

    .m_menu .controlBox {
        background: #FFF;
    }

    .m_menu .controlBox a.main {
        display: block;
        float: left;
        margin-right: 10px;
        background: #fff;
        width: 50px;
        height: 60px;
        font-size: 20px;
        color: #9e0202;
        line-height: 60px;
        text-align: center;
    }

    .m_menu .controlBox .m_logo {
        float: left;
    }

    .m_menu .controlBox .m_logo img {
        display: block;
        max-height: 60px;
    }

    .m_menu .controlBox .right {
        float: right;
        margin-right: 10px;
        line-height: 60px;
    }

    .m_menu .controlBox .right .btn_cart {
        display: inline-flex;
    }

    .m_menu .controlBox .right .btn_cart a {
        position: relative;
        display: list-item;
        font-size: 13px;
        color: #FFF;
        list-style-type: none;
    }

    .m_menu .controlBox .right .btn_cart a em {
        display: none;
    }

    .m_menu .controlBox .right .btn_cart a i {
        display: inline-block;
        vertical-align: middle;
        margin-right: 3px;
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 20px;
        color: #FFFFFF;
        text-align: center;
        border-radius: 100%;
        background: #656766;
    }

    .m_menu .controlBox .right .btn_cart b {
        display: block;
        font-size: 13px;
        color: #FFF;
        background: #C05555;
        line-height: normal;
        border-radius: 5px;
        padding: 3px 5px;
        position: absolute;
        top: 6px;
        right: -5px;
    }

    .m_menu .hideBox {
        /*手機menu內容*/
        display: none;
        background: #FFF;
        width: 280px;
        height: 100%;
        padding-bottom: 50px;
        overflow-y: auto;
        position: fixed;
        left: 0;
        top: 0;
    }

    .m_menu .hideBox p.sp {
        background: #fff;
        padding: 10px;
        font-size: 14px;
        color: #006838;
    }

    .searchBox {
        display: none;
    }

    /*手機版搜尋商品*/
    .m_menu .hideBox .searchBox_m {
        padding: 10px;
    }

    .m_menu .hideBox .searchBox_m input[type="text"] {
        display: inline-block;
        width: 190px;
        padding: 5px;
        border: none;
        height: 30px;
    }

    .m_menu .hideBox .searchBox_m a {
        display: inline-block;
        padding: 0 15px;
        background: #ccc;
        color: #FFF;
        line-height: 30px;
    }

    /*手機版會員區塊*/
    .m_menu .hideBox .loginBox {
        padding: 20px 10px;
        color: #999;
    }

    .m_menu .hideBox .loginBox i {
        margin-right: 7px;
        font-size: 18px;
        color: #FFF;
    }

    .m_menu .hideBox .loginBox a {
        font-family: 'Aldrich', 微軟正黑體, sans-serif;
        font-size: 15px;
        color: #FFF;
    }

    .m_menu ul.nav {
    }

    .m_menu ul.nav li {
        border-bottom: 1px solid #006838;
    }

    .m_menu ul.nav li:last-child {
        border-bottom: 0px;
    }

    .m_menu ul.nav li:hover {
        background: #fff;
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        transition: all 0.4s ease;
        -moz-transform-origin: bottom;
        -moz-transform: skewX(-10deg);
        padding: 0 15px;
    }

    .m_menu ul.nav li:hover a {
        color: #006838;
    }

    .m_menu ul.nav li a {
        padding: 20px 10px;
        font-family: 'Aldrich', 微軟正黑體, sans-serif;
        display: block;
        font-size: 15px;
        color: #222;
    }

    .m_menu ul.nav li a i {
        float: right;
    }

    .m_menu ul.nav li .submenu {
        display: none;
    }

    .m_menu ul.nav li .submenu a {
        padding: 10px 20px;
    }

    .m_menu ul.nav li .submenu a:hover {
        background: #999;
    }

    .m_menu .mfun {
        padding: 10px;
        text-align: center;
    }

    .m_menu .mfun a {
        margin: 0 1px;
        display: inline-block;
        font-size: 20px;
        background: #ffffff;
        color: #2e8cca;
        width: 35px;
        height: 35px;
        line-height: 35px;
        text-align: center;
        border-radius: 100%;
    }

    .mainArea {
        padding: 40px 0;
    }

    .bannerArea .wrap {
        padding: 0;
    }
}

@media (max-width: 767px) {
    .mainArea .contentBox {
    }

    /*bread*/
    .mainArea .titleBox .bread {
        display: none;
    }

    /*footer*/
    footer {
        padding: 25px 0;
    }

    footer .col-2 {
        float: none;
        width: 100% !important;
        padding: 0;
        padding-top: 20px;
        border: none;
        box-shadow: none;
    }

    ul.downMenu li a b {
        /* display:none; */
    }

    .translateIbest {
        float: none;
    }

    .goTop {
        display: none;
    }

    /*側邊_分享*/
    .side_share {
        clear: both;
        display: block;
        margin-bottom: 30px;
    }
}

/*640*/
@media (max-width: 640px) {
    /*訂單查詢*/ .orderCheckArea input[type="text"], .orderCheckArea input[type="password"] {
        display:block;
        width: 100%;
        margin-bottom: 10px;
    }

    .orderCheckArea a.btn {
        display: block;
        text-align: center;
    }

    .mainArea .titleBox h2 {
        float: none;
    }

    /*類別*/
    ul.classLink {
        display: none;
    }

    .m_classLink {
        display: block;
        margin: 20px 0;
        position: relative;
        /* padding: 10px; */
    }

    .m_classLink a.main {
        display: block;
        font-size: 16px;
        font-family: 'Aldrich', 微軟正黑體, sans-serif;
        color: #2e8cca;
        padding: 10px;
        border: 1px solid #f7f7f7;
        font-weight: normal;
    }

    .m_classLink a.main:before {
    content: "\f0da";
    font-family: FontAwesome;
    margin-right: 10px;
    }    

    .m_classLink a.main b {
        font-weight: normal;
    }

    .m_classLink a.main i {
        display: block;
        font-size: 15px;
        position: absolute;
        right: 10px;
        top: 50%;
        margin-top: -6px;
    }

    .m_classLink ul {
        display: none;
        /* width: 100%; */
        background: #FFF;
        /* border-radius:5px; */
        border: 1px solid #f7f7f7;
        position: absolute;
        top: 100%;
        z-index: 999;
        left: 0;
        right: 0;
        margin: auto;
    }

    .m_classLink ul li {
        /* padding: 10px; */
        border-bottom: 1px solid #f7f7f7;
    }

    .m_classLink ul li:last-child {
        border: none;
    }

    .m_classLink ul li a {
        display: block;
        color: #656766;
        font-family: 'Aldrich', 微軟正黑體, sans-serif;
        /* width:  100%; */
        font-size: 16px;
        padding: 10px;
        margin:  2px 0;
    }

    .m_classLink ul li:first-child a {
        border: none;
    }


    .m_classLink ul li a.current {
        color: #2e8cca;
    }    
 
    .m_classLink ul li a:hover {
        background: #f7f7f7;
    }      
}

/*360*/
@media (max-width: 360px) {
    /*頁籤*/ .tab {
    }

    .tab a {
    }

    /*側邊_聯絡資訊*/
    .side_contactInfo ul {
        text-align: center;
    }

    .side_contactInfo ul li {
        display: inline-block !important;
    }

    .side_contactInfo ul li a b {
        display: none;
    }
}

h7.en {
    font-size: 12px;
    color: #222;
    font-family: 'Aldrich', sans-serif;
}

ul.menu li a:hover h7.en {
    color: #b12c1f;
}

h7.title_en {
    font-size: 16px;
}

.map {
    float: left;
    width: 380px;
}

.txt {
    float: left;
    margin-left: 0px;
    display: table;
    height: 250px;
}

.definition {
    float: left;
    margin-bottom: 10px;
    margin-top: 10px;
    width: 100%;
}

hr.hr_line {
    margin: 0 auto;
}

.padding_txt {
    height: 100%;
    vertical-align: middle;
    display: table-cell;
}

ul.item {
    width: 100%;
    padding: 0;
    text-align: center;
}

ul.item li {
    display: inline-block;
    margin: 0 auto;
    list-style: none;
    /* text-align: center; */
}

ul.item_title {
    width: 100%;
    padding: 0px;
}

ul.item_title li {
    display: inline-block;
    /* padding: 0px 42px; */
}

ul.item_txt {
    padding: 0px;
    clear: both;
    list-style: none;
}

ul.item2 {
    width: 100%;
    padding: 0px;
}

ul.item2 li {
    display: inline-block;
    padding: 0px 42px;
}

li.item_pic {
    float: left;
    position: relative;
    padding: 0 20px 40px 20px;
}

ul.item_txt li.item_pic {
    width: 33.33%;
}

li.item_pic .Img {
    overflow: hidden;
    position: relative;
}

/*600*/
@media (max-width: 600px) {
    ul.item_txt li.item_pic {
        width:50%;
    }

    .map {
        float: left;
        width: 100%;
    }

    .txt {
        float: left;
        margin: 0;
    }
}

/*360 end*/
/*360*/
@media (max-width: 1160px) {
    ul.item_txt li.item_pic {
        width:100%;
        padding: 0%;
        margin-bottom: 30px;
    }

    .map {
        float: left;
        width: 100%;
    }

    .txt {
        float: left;
        margin: 0px;
    }
}

/*360 end*/
.item_div {
    overflow: hidden;
    /* padding: 0 10px; */
}

ul.item_etag {
    width: 100%;
    padding: 0px;
}

ul.item_etag li {
    display: inline-block;
    padding: 0px 25px;
    width: 160px;
}

ul.item_txt li.item_car {
    width: 28.33%;
}

li.item_car {
    float: left;
    position: relative;
    padding: 0 20px 40px 20px;
}

li.item_car .Img {
    overflow: hidden;
    position: relative;
}

/*600*/
@media (max-width: 600px) {
    ul.item_txt li.item_car {
        width:50%;
    }

    footer .col-2:first-child {
        padding-left: 0;
        border: none;
        box-shadow: none;
    }
}

/*360 end*/
/*360*/
@media (max-width: 1160px) {
    ul.item_txt li.item_car {
        width:100%;
        padding: 0%;
        margin-bottom: 30px;
    }

    ul.downMenu li {
        float: left;
        width: 100%;
    }

    footer .col-2:first-child {
        padding-left: 0;
        border: none;
        box-shadow: none;
    }
}

/*360 end*/
label.checkbox_big >input[type="checkbox"] {
    width: 18px;
    height: 24px;
    vertical-align: bottom;
}

label.checkbox_big >a {
    color: #d81e14;
    font-size: 18px;
    font-family: 'Aldrich', 微軟正黑體, sans-serif;
    text-decoration: underline;
}

p.sp.member >a {
    color: #222;
    font-family: 'Aldrich', 微軟正黑體, sans-serif;
    font-size: 14px;
    margin-right: 6px;
}

p.sp.member >a:hover {
    color:#d81e14;
}

p.sp.member {
    border-bottom: 1px solid #2e8cca;
}

header .leftBox_text a {
    border: none;
    font-size: 16px;
    width: auto;
    float: left;
    height: 34px;
    line-height: 34px;
}

.leftBox_text {
    float: left;
    position: relative;
    font-family: 'Aldrich', 微軟正黑體, sans-serif;
}

header .leftBox_text a.i-con {
    display: inline-block;
    margin: 5px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    color: #9fc7e2;
    text-align: center;
    border: 1px solid #9fc7e2;
    /* border-radius: 100%; */
}

header .leftBox_text a:hover {
    color: #2e8cca;
    background: #ffffff;
}

.cd-top {
    display: inline-block;
    height: 40px;
    width: 40px;
    position: fixed;
    bottom: 40px;
    right: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    /* image replacement properties */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background: rgb(237, 234, 222) url(../img/cd-top-arrow.png) no-repeat center 50%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    -moz-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s;
    z-index: 9999;
}

.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    -moz-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s;
}

.cd-top.cd-is-visible {
    /* the button becomes visible */
    visibility: visible;
    opacity: 1;
}

.cd-top.cd-fade-out {
    /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
    /* opacity: .5; */
}

.no-touch .cd-top:hover {
    background-color: #e86256;
    opacity: 1;
}

@media only screen and (min-width: 768px) {
    .cd-top {
        right: 20px;
        bottom: 20px;
    }
}

@media only screen and (min-width: 1024px) {
    .cd-top {
        height: 60px;
        width: 60px;
        right: 30px;
        bottom: 30px;
        z-index: 9999;
    }
}

/*手機版搜尋商品*/
.searchBox {
    /* padding:10px; */
}

.searchBox input[type="text"] {
    display: inline-block;
    width: 190px;
    padding: 5px;
    border: 1px solid #f7f7f7;
    height: 30px;
    outline:  none;
    background: #f7f7f7;
}

.searchBox a {
    display: inline-block;
    padding: 0 10px;
    background: #ccc;
    color: #FFF;
    line-height: 30px;
}

b.buylist_b {
    color: #E81828;
}

footer.bk {
    /* height: 10px; */
}
