@charset "utf-8";

/* COMMON
===================== */

* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

body {
    font-family: "微軟正黑體", arial, sans-serif;
    font-size: 14px;
    color: #eee;
    margin: 0;
    padding: 0;
    height: auto;
    position: relative;
}

ul,
ol,
dl {
    list-style: none;
    padding: 0;
    margin: 0;
}

h4,
h5,
h6,
p {
    margin-top: 0;
    font-weight: normal;
}

h6 {
    font-size: 9px;
}

h5 {
    font-size: 11px;
}

h4 {
    font-size: 16px;
}

a img {
    border: none;
}

a {
    color: #eee;
    text-decoration: none;
    transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
}

a:hover,
a:focus {
    color: #000;
    outline: none;
}

img {
    display: inline-block;
    border-style: none;
}

a img:hover {
    opacity: .8;
    transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
}

input[type="text"],
input[type="password"],
textarea {
    background: #fff;
    border: none;
    padding: 8px 5px;
    margin-bottom: 3px;
    border: 1px solid #ccc;
    border-radius: 3px;
    resize: none;
}

input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus {
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3) inset;
    outline: none;
}

.pull-right {
    float: right !important;
}

.pull-left {
    float: left !important;
}

.full {
    width: 100% !important;
    padding: 0;
}

.half {
    width: 50% !important;
    padding: 0;
}

.back_white {
    background-color: #fff;
}


/**/


/* WRAPPER
===================== */

.wrapper {
    display: inline-block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.block {
    max-width: 1000px;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0 auto;
    position: relative;
}


/**/


/* HEADER
===================== */

.header {
    float: left;
    width: 100%;
    height: 120px;
    margin: 0 0 0px;
    padding: 0;
    background: url(../images/bg_nav.gif) repeat-x;
    position: absolute;
    top: 0px;
    z-index: 100;
}

.header a {}

.header .top_tel {
    float: right;
    height: 30px;
    line-height: 30px;
    margin-top: 57px;
    padding-left: 30px;
    padding-right: 10px;
    background: url(../images/icon_tel.png) no-repeat 2px 5px;
}

.header .top_tel a {
    color: #9E7025;
    font-size: 24px;
    font-weight: bold;
}

.homelogo {
    display: inline-block;
    float: left;
    width: 20%;
    height: 100px;
    line-height: 100px;
    text-align: center;
    position: relative;
    top: 20px;
    left: 15px;
    z-index: 6;
}

.homelogo:after {
    content: ".";
    font-size: 0;
    -webkit-text-size-adjust: none;
}

.homelogo img {
    width: auto;
    height: auto;
    margin: 0px auto;
    vertical-align: middle;
}


/**/


/* MENU
===================== */

.nav {
    float: right;
    height: auto;
    position: relative;
    display: inline-block;
    font-weight: 900;
    top: 0px;
    right: 0px;
    z-index: 5;
}

.nav-list {
    text-align: left;
}

.nav-item {
    float: left;
    display: block;
    zoom: 1;
    position: relative;
    width: auto;
    height: auto;
    line-height: 24px;
    padding: 0 6px;
    text-align: center;
    transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
}

.nav-item a {
    display: block;
    padding-top: 60px;
    padding-bottom: 10px;
    color: #eee;
    font-size: 16px;
    font-weight: 100;
}

.nav-item.icon a i {
    margin-top: 5px;
}

.nav-item.icon a i.icon_line {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url(../images/icon_line.png) no-repeat left top;
}

.nav-item.icon a:hover i.icon_line {
    background-position: left bottom;
}

.nav-item.icon:hover > a {
    color: #e7b41d;
}

.nav-item:hover .nav-submenu {
    display: block;
}

.nav-item strong {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #e7b41d;
    position: absolute;
    top: 0px;
    left: -3px;
    transition-duration: scale 0.8s;
    -webkit-transition-duration: scale 0.8s;
    -moz-transition-duration: scale 0.8s;
    -o-transition-duration: scale 0.8s;
    transform: scale(1, 0);
    -webkit-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -o-transform: scale(1, 0);
}

.nav-item:hover strong,
.nav-item.active strong {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
}


/* Mobile navigation */

.nav-mobile {
    display: none;
    /* Hide from browsers that don't support media queries */
    cursor: pointer;
    position: absolute;
    top: -70px;
    right: 0;
    background-size: 100%;
    height: 50px;
    width: 50px;
}

.nav-mobile.nav-mobile-is-open {
    background-position: center bottom;
}

.icon-hamburger {
    top: 50%;
    left: 50%;
    margin-top: 0px;
    margin-left: -15px;
}

.icon-hamburger,
.icon-hamburger:before,
.icon-hamburger:after {
    display: block;
    height: 2px;
    width: 30px;
    background-color: white;
    border-radius: 1px;
    cursor: pointer;
    position: absolute;
    transition: all 500ms ease-in-out;
}

.icon-hamburger:before {
    content: '';
    transform: translate3d(0px, -10px, 0);
    -webkit-transform: translate3d(0px, -10px, 0);
    -moz-transform: translate3d(0px, -10px, 0);
    -ms-transform: translate3d(0px, -10px, 0);
    -o-transform: translate3d(0px, -10px, 0);
}

.icon-hamburger:after {
    content: '';
    transform: translate3d(0px, 10px, 0);
    -webkit-transform: translate3d(0px, 10px, 0);
    -moz-transform: translate3d(0px, 10px, 0);
    -ms-transform: translate3d(0px, 10px, 0);
    -o-transform: translate3d(0px, 10px, 0);
}

.nav-mobile.nav-mobile-is-open .icon-hamburger {
    background-color: transparent;
}

.nav-mobile.nav-mobile-is-open .icon-hamburger:before {
    transform: translate3d(0px, 0px, 0);
    -webkit-transform: translate3d(0px, 0px, 0);
    -moz-transform: translate3d(0px, 0px, 0);
    -ms-transform: translate3d(0px, 0px, 0);
    -o-transform: translate3d(0px, 0px, 0);
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.nav-mobile.nav-mobile-is-open .icon-hamburger:after {
    transform: translate3d(0px, 0px, 0);
    -webkit-transform: translate3d(0px, 0px, 0);
    -moz-transform: translate3d(0px, 0px, 0);
    -ms-transform: translate3d(0px, 0px, 0);
    -o-transform: translate3d(0px, 0px, 0);
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}


/* Navigation submenu */

.nav-submenu {
    display: none;
    width: 120px;
    text-align: left;
    position: absolute;
    top: 90px;
    left: 0;
}

.nav-submenu-item a {
    background: #fff;
/*     background-color: rgba(255, 255, 255, .9); */
    color: #000;
    display: block;
    padding: 5px;
    font-size: 12px;
}

.nav-submenu-item a:hover {
    background: #E7B41D;
    color: #222;
}

.nav-item:hover .nav-submenu {
    display: block;
}


/* Mobile navigation, clickable area for revealing <ul> */

.nav-click {
    position: absolute;
    top: 0;
    right: 0;
    display: none;
    border-left: 1px solid #222;
    height: 54px;
    width: 50px;
    cursor: pointer;
}

.nav-click i {
    display: block;
    height: 48px;
    width: 48px;
    line-height: 48px;
}

.nav-click:hover {
    background-color: #ccc;
}


/**/


/* sub-nav */

.sub_nav {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.sub_nav ul {
    padding: 40px 0;
}

.sub_nav ul li {
    display: inline-block;
    width: auto;
    margin: 0 10px;
    font-size: 18px;
    border-bottom: 1px solid #fff;
}

.sub_nav ul li.active,
.sub_nav ul li:hover {
    border-color: #3f3e3b;
}

.sub_nav ul li a {
    color: #3f3e3b;
}


/**/


/* BANNER
===================== */

.index_banner {
    float: left;
    width: 100%;
    /* margin-top: 20px; */
    margin-bottom: 10px;
    text-align: center;
}

.index_banner .block {
    display: inline-block;
    margin-top: -250px;
    z-index: 20;
}

.page_banner {
    width: 100%;
    min-height: 360px;
    margin-bottom: 0px;
    position: relative;
}

.page_banner .title {
    width: 100%;
    color: #000;
    text-align: center;
    position: absolute;
    bottom: 20px;
}


/**/


/* BUTTON
===================== */

.btn_box {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.btn_center {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.btn_box a.link {
    display: inline-block;
    width: 100%;
    height: 36px;
    line-height: 36px;
    overflow: hidden;
    vertical-align: top;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    color: #666;
    background: #ccc;
    transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
}

.btn_box:hover a.link {
    color: #999;
    background: #f2f2f2;
}

.btn_box .btn_more {
    display: block;
    width: 180px;
    height: 45px;
    line-height: 45px;
    padding: 0px;
    margin: 10px auto;
    background-color: #e7b41d;
    color: #fff;
    font-size: 18px;
    text-align: center;
    border-radius: 23px;
    box-shadow: 1px 1px 2px #000;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.66);
}

.btn_box a.btn_more:hover {
    background-color: #b18d51;
}

.btn_more a {
    color: #000;
}

.btn_more a:hover {
    color: #CE0000;
}

.btn_box .btn_back {
    display: block;
    width: 180px;
    height: 45px;
    line-height: 45px;
    padding: 0px;
    margin: 10px auto;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-size: 18px;
    text-align: center;
    border-radius: 23px;
    box-shadow: 1px 1px 2px #000;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.66);
}

.btn_box a.btn_back:hover {
    background-color: #fff;
    color: #222;
}

.but_center {
    display: inline-block;
    width: 100%;
    margin: 10px 0;
    text-align: center;
}

.but_center .but_member {
    display: inline-block;
    width: 109px;
    height: 26px;
    line-height: 26px;
    color: #fff;
    background: #000;
    border: none;
    cursor: pointer;
}

.but_member:hover {
    background: #FBA9A4;
}

.but_center .but_cancel {
    display: inline-block;
    width: 109px;
    height: 26px;
    line-height: 26px;
    color: #000;
    background: #ccc;
    border: none;
    cursor: pointer;
}

.but_cancel:hover {
    background: #FBA9A4;
    color: #fff;
}

.btn_box .btn_submit {
    display: block;
    width: 85px;
    height: 35px;
    line-height: 35px;
    padding: 0px;
    margin: 10px auto;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-size: 18px;
    text-align: center;
    border-radius: 23px;
    box-shadow: 1px 1px 2px #000;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.66);
}

.btn_box .btn_submit:hover {
    background: #fff;
    color: #222;
}


/**/


/* 分頁按鈕
===================== */

.page_list {
    clear: both;
    padding-top: 30px;
    text-align: center;
    font-size: 12px;
}

.page_list a {
    margin: 5px 10px;
    padding: 3px;
    color: #fff;
}

.page_list a:hover,
.page_list a.selected {
    color: #fff100;
}

.page_list a.selected {
    border-bottom: 2px solid #fff100;
}


/**/


/* CLEAR
===================== */

.clear {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

.hr {
    clear: both;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 0;
    border-top: 1px dashed #ccc;
    margin: 10px 0;
}

.line_solid {
    clear: both;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 0;
    border-top: 1px dashed #ccc;
    margin: 10px 0;
}


/**/


/*tip*/

.tip {
    margin: 10px 0;
}

.tip b {
    font-weight: bold;
}

.tip p {
    color: #999;
}


/**/


/* MAIN
===================== */

.main {
    display: block;
    float: left;
    width: 100%;
    padding: 0;
    padding-top: 120px;
    margin: 0;
    margin-bottom: 0px;
    background-color: #000;
    background-color: rgba(0, 0, 0, .8);
}

.main.back_white {
    color: #000;
}

.main .page_side {
    display: inline-block;
    width: 25%;
    margin-top: 20px;
    margin-bottom: 40px;
    padding: 0 1%;
}

.main .page_main {
    display: inline-block;
    width: 75%;
    margin-top: 20px;
    margin-bottom: 40px;
    padding: 0 1%;
}


/**/


/* PAGE_SIDE
===================== */


/***** category_list *****/

.category_list {}

.page_side .category_list .title {
    line-height: 24px;
    margin: 20px 0 10px;
    border-bottom: 2px solid #F4B81A;
}

.page_side .category_list .title h4 {
    float: left;
    font-size: 16px;
    padding-left: 10px;
}

.page_side .category_list .title span {
    float: left;
    padding-left: 10px;
    font-size: 14px;
    color: #898989;
}

.page_side .category_list li {
    display: inline-block;
    width: 100%;
    position: relative;
}

.page_side .category_list li+li {
    border-top: 1px solid #ccc;
}

.page_side .category_list li a {
    display: block;
    padding: 20px 10px 20px 30px;
}

.page_side .category_list li a:hover,
.page_side .category_list li.active a {
    color: #F4B81A;
}

.page_side .category_list li.active:before {
    display: block;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3px 0 3px 6px;
    border-color: transparent transparent transparent #f4b61a;
    position: absolute;
    top: 50%;
    left: 10px;
    margin-top: -3px;
}


/**/

.main .page_side img {
    max-width: 213px !important;
    height: auto !important;
    ;
}

.main .page_side .grid_side {
    margin-top: 20px;
    margin-bottom: 20px;
}

.main .page_side .left_nav {
    padding: 0 0 10px;
    margin-bottom: 10px;
}

.left_nav .title {
    display: inline-block;
    width: auto;
    height: auto;
    margin-top: 0px;
    color: #222;
    font-size: 16px;
}

.main .page_side .left_nav .title b {}

.main .page_side .left_nav {
    padding: 0 0 10px;
    margin-bottom: 10px;
}

.main .page_side .left_nav ul {
    padding-left: 0px;
    margin-top: 10px;
    text-align: left;
}

.main .page_side .left_nav li {
    height: auto;
    line-height: 29px;
}

.main .page_side .left_nav li+li {
    border-top: 1px solid #ccc;
}

.main .page_side .left_nav li:hover a {
    color: #67B9A7;
}

.main .page_side .left_nav li.active a {
    color: #67B9A7;
}

.main .page_side .company_info {
    display: block;
    margin: 0 1% 0 1%;
    font-size: 14px;
    text-align: left;
    position: static;
    left: 0px;
    bottom: 0px;
    -moz-transform-origin: left;
    -webkit-transform-origin: left;
    -o-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}

.main .page_side .company_info ul {}

.main .page_side .company_info ul li {
    display: block;
    float: left;
    width: 100%;
    padding: 5px 0;
}

.main .page_side .company_info ul li span {
    display: inline-block;
    width: auto;
    padding: 0 5px 0 0px;
}


/**/


/* PAGE_MAIN
===================== */


/*TITLE*/

.title {
    display: block;
    width: 100%;
    height: 38px;
    line-height: 38px;
    margin-bottom: 5px;
    font-size: 24px;
    font-weight: bold;
    position: relative;
}

.page_side .title {}

.page_side .title img {
    padding-right: 10px;
}

.page_side .title b {
    color: #fff;
}

.page_main .title {}

.page_main .title b {}

.page_main .title span {}

.page_main .sub_title {}

.page_main .sub_title b {}

.title.page_title {
    display: block;
    float: left;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 40px;
    color: #fff;
    text-align: left;
}

.title.page_title b {
    display: block;
    clear: both;
}

.page_side.full .title {
    display: block;
    width: 100%;
    margin-top: 60px;
    margin-bottom: 40px;
    color: #000;
    text-align: center;
}

.page_side.full .title b {
    display: block;
}

.page_side.full .title:after {
    display: inline-block;
    content: '';
    width: 150px;
    height: 1px;
    background-color: #fff;
    margin: 10px 0 auto;
}


/**/


/* LOCATION */

.title.page_title .location {
    display: block;
    clear: both;
    color: #fff;
    font-size: 12px;
}

.title.page_title .location a {
    color: #fff;
}

.title.page_title .location li {
    float: left;
}

.title.page_title .location li i {
    padding: 0 5px;
}


/**/


/* CONTENT
===================== */

.content {
    width: 100%;
    clear: both;
    line-height: 20px;
    font-size: 16px;
}

.back_white .content {
    color: #3f3e3b;
}

.content p {
    line-height: 32px;
}

.content ul {
    list-style: outside;
    padding-left: 20px;
}

.content ol {
    list-style: outside decimal;
    padding-left: 20px;
}

.content b {
    font-weight: bold;
}

.content strong {
    font-weight: bolder;
}

.content img {
    max-width: 100%;
    height: auto !important;
    box-shadow: 1px 2px 10px #000;
    -webkit-box-shadow: 1px 2px 10px #000;
}

.content iframe {
    width: 100% !important;
    box-shadow: 1px 2px 10px #000;
    -webkit-box-shadow: 1px 2px 10px #000;
}


/**/


/* HOME
===================== */

.index_about,
.index_news {
    float: left;
    width: 50%;
    padding: 1% 2% 2%;
    margin: 0;
}

.index_about .title,
.index_news .title {
    display: block;
    height: auto;
    border-bottom: 3px solid #404040;
    text-align: center;
}

.index_about .title b,
.index_news .title b {
    display: block;
    color: #fff;
    font-size: 21px;
    margin-bottom: 15px;
}

.index_about .content,
.index_news ul {
    display: block;
    min-height: 180px;
    padding: 20px 2%;
}

.index_news ul li {
    display: inline-block;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px dashed #656565;
}

.index_news ul li a {
    display: inline-block;
    width: 75%;
    color: #e7b41d;
    font-size: 16px;
    font-weight: bold;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.index_news ul li a:hover {
    color: #b18d51;
}

.index_news ul li span {
    display: inline-block;
    float: left;
    padding: 0 10px;
}

.index_about .btn_box,
.index_news .btn_box {
    width: 100%;
}

.index_service {
    float: left;
    width: 100%;
    padding: 2% 0%;
    position: relative;
}

.index_service .title {
    display: block;
    width: 100%;
    margin-bottom: 40px;
    color: #e7b41d;
    text-align: center;
}

.index_service .title b {
    display: block;
}

.index_service .title:after {
    display: inline-block;
    content: '';
    width: 150px;
    height: 1px;
    background-color: #e7b41d;
    margin: 10px 0 auto;
}

.index_service ul.list {
    width: 100%;
    padding-left: 0.5%;
}

.index_service .item {
    float: left;
    width: 33%;
    height: 620px;
    line-height: 40px;
    margin: 0px;
    text-align: center;
    text-shadow: 0px 0px 10px rgb(255, 255, 255);
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.6);
    background: none;
    border: 0;
}

.index_service .item .pic {
    height: 620px;
    position: relative;
}

.index_service .item:hover .pic {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}

.index_service .item .pic:after {
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0px;
    transition-duration: 0.5s;
    /* 不支援IE瀏覽器 */
    -moz-transition-duration: 0.5s;
    /* Firefox 使用的語法 */
    -webkit-transition-duration: 0.5s;
    /* Chrome、Safari 使用的語法 */
    -o-transition-duration: 0.5s;
}

.index_service .item .pic:hover:after {
    background-color: rgba(0, 0, 0, 0.0);
}

.index_service .item b {
    display: inline-block;
    height: 38px;
    line-height: 38px;
    margin-top: 300px;
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.index_service .item p {
    height: 38px;
    line-height: 38px;
    color: #fff;
    font-size: 24px;
    position: relative;
    z-index: 2;
}

.index_product {
    float: left;
    width: 100%;
    margin-top: 100px;
    border: 1px solid #404040;
    position: relative;
}

.index_product:before {
    display: block;
    content: '';
    width: 63px;
    height: 31px;
    margin-left: -32px;
    background: url(../images/product_meddle.png);
    position: absolute;
    top: -16px;
    left: 50%;
    z-index: 2;
}

.index_product .item {
    float: left;
    width: 25%;
    height: auto;
    margin: 0px;
    font-size: 18px;
    text-align: center;
    background: none;
    border: 0;
}

.index_product .item.slick-active {
    border-right: 1px solid #404040;
}

.index_product .slick-prev,
.index_product .slick-next {
    width: 30px;
    height: 40px;
    margin-top: -20px;
    top: 50%;
    bottom: auto;
    background-image: url(../images/arrow_product.png);
}

.index_product .item .pic {
    width: 100% !important;
    height: 320px !important;
    opacity: 0.8;
    transition-duration: 0.5s;
    /* 不支援IE瀏覽器 */
    -moz-transition-duration: 0.5s;
    /* Firefox 使用的語法 */
    -webkit-transition-duration: 0.5s;
    /* Chrome、Safari 使用的語法 */
    -o-transition-duration: 0.5s;
}

.index_product .item:hover .pic {
    opacity: 1;
}

.index_product .item .name {
    height: 49px;
    line-height: 49px;
    padding: 0 10px;
    background: #000;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space:nowrap; 
}

.index_product .item .name a {
    color: #fff;
    font-weight: bold;
}


/**/


/* CONTACT
===================== */

* .contact_form .title {
    text-align: center;
}

.contact_info {
    float: left;
    width: 33%;
    margin-top: 30px;
}

.contact_info dt {
    color: #9E7025;
    font-size: 16px;
    font-weight: bold;
}

.contact_info dt,
.contact_info dd {
    padding-left: 100px;
}

.contact_form .field {
    display: inline-block;
    width: 33%;
    position: relative;
}

.contact_form .field.textarea {
    width: 100%;
    margin-top: 5px;
}

.contact_form .field.code {
    margin-top: 10px;
}

.contact_form .field.code p {
    float: left;
}

.contact_form .field.code img {
    float: left;
}

.contact_form input,
.contact_form textarea {
    font-size: 14px;
}

.contact_form input[type="text"] {
    float: left;
    width: 100%;
    margin: 0 0px 0px;
}

.contact_form textarea {
    width: 100% !important;
    height: 195px !important;
    margin-left: 0px;
}

.contact_form #tele_sign_err {}

message_sign_err,
#message_sign_ok {}

.contact_form .field .form_icon_no,
.contact_form .field .form_icon_ok {
    position: relative;
}

.contact_form .field .form_icon_no img,
.contact_form .field .form_icon_ok img {
    position: absolute;
    top: 3px;
    right: 3px;
}

.contact_form .btn_box {
    float: right;
    width: auto;
    position: relative;
}


/**/


/* PRODUCT
===================== */


/***** list *****/

.product_list {
    display: inline-block;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 40px;
    padding: 0 1%;
}

.product_list li {
    display: inline-block;
    width: 49%;
    padding: 0 1%;
    margin-bottom: 2%;
}

.product_list li .pic {
    width: 100% !important;
    height: 240px !important;
    border: 1px solid #404040;
    opacity: 0.8;
    transition-duration: 0.5s;
    /* 不支援IE瀏覽器 */
    -moz-transition-duration: 0.5s;
    /* Firefox 使用的語法 */
    -webkit-transition-duration: 0.5s;
    /* Chrome、Safari 使用的語法 */
    -o-transition-duration: 0.5s;
    box-shadow: 1px 2px 10px #000;
    -webkit-box-shadow: 1px 2px 10px #000;
}

.product_list li:hover .pic {
    border-color: #fff;
    opacity: 1;
}

.product_list li .name {
    height: 49px;
    line-height: 49px;
    background: #000;
    border: 1px solid #404040;
    border-top: none;
    text-align: center;
    box-shadow: 1px 2px 10px #000;
    -webkit-box-shadow: 1px 2px 10px #000;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.product_list li:hover .name {
    border-color: #fff;
}

.product_list li .name a {
    color: #fff;
    font-weight: bold;
}


/**/


/***** detail *****/

.products_detail_box {
    display: inline-block;
    width: 100%;
    height: 100%;
    position: relative;
    top: 20px;
}

.products_detail_box .pro_img {
    float: left;
    width: 50%;
}

.slider-for .slick-slide {
    opacity: 0;
}

.slider-for > div > a > img {}

#image-block {
    height: 300px;
}

img#bigpic {
    max-width: 100%;
    width: auto;
    max-height: 300px;
    margin: 0px auto;
}

.slider-nav {
    width: 90%;
    margin: 2% 5% !important;
}

.slider-nav .slider-nav-item {
    height: 90px;
    margin: 0 10px;
    border: 1px solid #ccc;
    outline: none;
    filter: gray;
}

.slider-nav .slider-nav-item img {
    width: 100%;
}

.slider-nav .slider-nav-item.slick-center {
    border: 1px solid #000;
    outline: none;
}

.slider-nav .slick-prev,
.slider-nav .slick-next,
.slider-fast .slick-prev,
.slider-fast .slick-next {
    display: block;
    width: 30px;
    height: 40px;
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 45%;
    margin-top: -10px;
    padding: 0;
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent;
    z-index: 2;
}

.slider-nav .slick-prev,
.slider-fast .slick-prev {
    left: -30px;
    background: url(../images/arrow_product.png) no-repeat left;
}

.slider-nav .slick-next,
.slider-fast .slick-next {
    right: -30px;
    background: url(../images/arrow_product.png) no-repeat right;
}


/***** right_box *****/

.right_box {
    display: inline-block;
    width: 50%;
    padding: 0 1%;
    color: #eee;
}

.right_box .content {
    min-height: 235px;
}

.share_bar {
    margin: 0px 0 10px;
}

.share_bar #topbutton,
.share_bar .view {
    float: left;
    display: inline-block;
    padding: 0 5px 0 0;
}


/**/


/* NEWS
===================== */


/***** list *****/

.news_list {
    display: inline-block;
    width: 75%;
    margin-top: 20px;
    margin-bottom: 40px;
    padding: 0 1%;
}

.news_list ul li {
    display: inline-block;
    width: 100%;
    line-height: 45px;
    border-bottom: 1px dashed #656565;
}

.news_list ul li a {
    display: inline-block;
    color: #e7b41d;
    font-size: 16px;
    font-weight: bold;
}

.news_list ul li a:hover {
    color: #b18d51;
}

.news_list ul li span {
    padding: 0 10px;
}


/***** detail *****/

.main .page_main span.date {
    display: inline-block;
    float: right;
    font-size: 16px;
}


/**/


/* ORDER
===================== */

.table_border {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px;
}

.table_border table {
    border: 0 none;
}

.table_border th,
.table_border td {
    border: 0 none;
}

.table td,
.table th {
    padding: 10px;
    text-align: center;
    vertical-align: middle
}

.table thead th {
    border-bottom: 1px solid #fff;
}

.table thead th {
    text-align: center
}

.table tbody tr ~ tr {
    border-top: 1px solid #eee
}

.table tbody td {
    position: relative;
}

.table tbody td img {
    height: 180px
}

.table tbody td a:hover {
    color: #DB8900
}

.table tbody td a i {
    color: #ccc
}

.table tbody td a:hover i {
    color: #222
}

.table tbody td:last-child:after {
    display: block;
    content: '';
    width: 1px;
    height: 90px;
    margin-top: -45px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 0px;
}

.form-group {
    display: block;
    float: left;
    width: 100%;
    padding: 10px 0;
}

.form-group .control-label {
    float: left;
    width: 12%;
    height: 100%;
    margin: 5px 0
}

.address-group {
    display: inline-block
}

.address-group select {
    margin: 0 10px 10px 0
}

.address-group input {
    width: 260px
}

.btn-warning {
    display: inline-block;
    width: 150px;
    height: 40px;
    line-height: 40px;
    margin: 10px;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 20px;
    color: #fff;
    font-weight: 700;
    position: relative;
    cursor: pointer
}

.btn-warning i {
    display: inline-block;
    padding: 10px;
}

.btn-warning:hover {
    background-color: #fff;
    color: #222
}

.btn-default {
    display: inline-block;
    width: 90px;
    height: 40px;
    line-height: 40px;
    margin: 10px;
    background-color: #666;
    border: 1px solid #666;
    border-radius: 20px;
    color: #ccc;
    font-weight: 700;
    position: relative;
    cursor: pointer
}

.wall {
    padding: 10px;
    background-color: #fcf8ce;
    border-radius: 10px;
    text-align: center
}

.wall h3 {
    color: #AE0D15;
    font-size: 21px;
}

.wall h3 small {
    padding: 0 5px;
    font-size: .6em
}

.check_block dt,
.check_block dd {
    padding: 10px 0
}

.check_block dt {
    font-weight: 700
}

.check_block dd span {
    display: inline-block;
    width: 12%;
    padding-left: 15px;
    color: #666
}

.check_block dd span.color_red {
    width: 100%;
    color: #c00
}


/**/


/* FOOTER
===================== */

.footer {
    float: left;
    width: 100%;
    height: auto;
    padding: 70px 0 0;
    margin-top: 0px;
    color: #404040;
    background: #000;
    border-top: none;
    position: relative;
}

.footer li {
    float: left;
    line-height: 24px;
}

.footmenu,
.company_info,
.follow_info {
    float: left;
    width: 31%;
    margin: 0 1% 0 1%;
    margin-bottom: 10px;
    font-size: 16px;
    text-align: left;
}

.footmenu .title,
.company_info .title,
.follow_info .title {
    color: #fff;
    font-weight: 100;
}

.footmenu ul li,
.company_info ul li,
.follow_info ul li {
    display: block;
    width: 100%;
    color: #ccc !important;
}

.company_info ul li span {
    display: inline-block;
    width: 75px;
}

.follow_info ul li i {
    width: 32px;
}

.follow_info ul li a i.icon_line {
    display: inline-block;
    height: 16px;
    background: url(../images/icon_line.png) no-repeat left top;
}

.follow_info ul li a:hover i.icon_line {
    background-position: left bottom;
}

.footer a {
    color: #ccc;
}

.footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.copy_right a:hover {
    color: #e7b41d;
}

.footmenu p {
    color: #999;
}

.copy_right {
    float: left;
    width: 100%;
    height: 30px;
    line-height: 30px;
    clear: both;
    margin: 0;
    margin-top: 70px;
    padding: 25px 0 70px;
    border-top: 3px solid #404040;
    text-align: right;
}

.copy_right span {
    text-align: right;
    line-height: 21px;
    font-size: 16px;
    color: #fff;
}


/**/


/* TOTOP
===================== */

#toTop {
    display: none;
    text-decoration: none;
    position: fixed;
    left: 50%;
    margin-left: 40%;
    bottom: 42px;
    cursor: pointer;
    overflow: hidden;
    width: 36px;
    height: 36px;
    border: none;
    text-indent: -999px;
    z-index: 20;
    background: url("../images/ui.totop.png") no-repeat center #3f3e3b;
    background-size: cover;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
}

#toTop:hover {
    height: 36px;
    display: block;
    overflow: hidden;
    float: left;
}

#toTop:active,
#toTop:focus {
    outline: none;
}


/**/


/* CONTACT INFO
===================== */

.footer_info {
    margin-left: 38%;
    position: fixed;
    bottom: 80px;
    z-index: 999;
    left: 50%;
}

.footer_info a {
    display: block;
    color: #FFF;
}

.footer_info .line {
    display: block;
    width: 36px;
    margin: 5px 0;
    margin-left: 0px;
    border-radius: 100%;
    text-align: center;
    vertical-align: middle;
    background: #000;
    overflow: hidden;
}

.footer_info #line {
    margin: 10px 0 0 0;
}

.footer_info .mobile {
    display: none;
}


/**/


/* SEO
===================== */

h1.h1_seo {
    padding: 0px;
    margin: 0px;
    height: 0;
    position: absolute;
    text-indent: -9999px;
}

h2.h2_seo {
    padding: 0px;
    margin: 0px;
    height: 0;
    position: absolute;
    text-indent: -9999px;
}

h3.h3_seo {
    padding: 0px;
    margin: 0px;
    height: 0;
    text-indent: -9999px;
}


/* ANIME
====================== */


/* Wobble Vertical */

@-webkit-keyframes hvr-wobble-vertical {
    16.65% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }
    33.3% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }
    49.95% {
        -webkit-transform: translateY(4px);
        transform: translateY(4px);
    }
    66.6% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }
    83.25% {
        -webkit-transform: translateY(1px);
        transform: translateY(1px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes hvr-wobble-vertical {
    16.65% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }
    33.3% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }
    49.95% {
        -webkit-transform: translateY(4px);
        transform: translateY(4px);
    }
    66.6% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
    }
    83.25% {
        -webkit-transform: translateY(1px);
        transform: translateY(1px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.hvr-wobble-vertical {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
}

*:hover >.hvr-wobble-vertical,
*:hover >.hvr-wobble-vertical:focus,
*:hover >.hvr-wobble-vertical:active {
    -webkit-animation-name: hvr-wobble-vertical;
    animation-name: hvr-wobble-vertical;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}


/**/
