﻿@charset "utf-8";
/* CSS Document */
body {
    font-size: 15px;
    color: #333;
    font-family: 'Open Sans', "微軟正黑體", "Microsoft JhengHei", Arial, sans-serif;
}

p {
    line-height: 30px;
    margin-bottom: 0;
}

    p + p {
        margin-top: 30px;
    }

.wrapfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

a {
    color: #666;
    transition: all .5s;
}

    a:hover {
        color: #008cd6;
    }

.btn-primary {
    background: #008cd6;
    color: #fff;
    text-align: center;
    border: none;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

    .btn-primary:hover,
    .btn-primary:focus,
    .btn-primary:active,
    .btn-primary.active,
    .open > .dropdown-toggle.btn-primary {
        background: #46B1B7;
    }

.btn-default {
    border: 1px solid #DFDFDF;
    color: #888;
}

    .btn-default:hover,
    .btn-default:focus,
    .btn-default:active,
    .btn-default.active {
        background-color: #008cd6;
        color: #fff;
    }

.t-clamp {
    --text-height: 2em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-height: var(--text-height);
}
    .t-clamp.t1 {
        -webkit-line-clamp: 1;
        height: calc(var(--text-height) * 1);
    }
    .t-clamp.t2 {
        -webkit-line-clamp: 2;
        height: calc(var(--text-height) * 2);
    }
    .t-clamp.t3 {
        -webkit-line-clamp: 3;
        height: calc(var(--text-height) * 3);
    }
    .t-clamp.t4 {
        -webkit-line-clamp: 4;
        height: calc(var(--text-height) * 4);
    }
    .t-clamp.t5 {
        -webkit-line-clamp: 5;
        height: calc(var(--text-height) * 5);
    }
    .t-clamp.t6 {
        -webkit-line-clamp: 6;
        height: calc(var(--text-height) * 6);
    }

/** loading **/
.loadingbar {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .loadingbar div {
        box-sizing: border-box;
        display: block;
        position: absolute;
        width: 64px;
        height: 64px;
        margin: 8px;
        border: 8px solid #008cd6;
        border-radius: 50%;
        animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
        border-color: #008cd6 transparent transparent transparent;
    }

        .loadingbar div:nth-child(1) {
            animation-delay: -0.45s;
        }

        .loadingbar div:nth-child(2) {
            animation-delay: -0.3s;
        }

        .loadingbar div:nth-child(3) {
            animation-delay: -0.15s;
        }

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* 防止float溢出 */
.content .txt:after,
.content .list-box .txt-list li:after,
body.news .content > .h3:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

#floating {
    display: none;
}

    #floating .btn-floating {
        background-color: #008cd6;
        display: block;
        width: 28px;
        height: 58px;
        position: absolute;
        left: -30px;
        margin: 1px;
        padding: 10px 3px;
        display: none;
    }

        #floating .btn-floating .icon-arrow {
            background: url(../images/all/arrow.png) no-repeat;
            display: block;
            width: 32px;
            height: 40px;
        }

    #floating.open .btn-floating .icon-arrow {
        background-position: 0 -40px;
    }

    #floating ul {
        background: #fff;
        background: rgba(255, 255, 255, 0.9);
        margin: 0;
    }

        #floating ul li {
            padding: 5px 0;
        }

            #floating ul li + li {
                border-top: 1px solid #E7E7E7;
            }

            #floating ul li a {
                width: 60px;
                font-size: 10px;
                color: #bbb;
                text-align: center;
                display: block;
                position: relative;
            }

                #floating ul li a:hover {
                    color: #333;
                }

                #floating ul li a .icon {
                    font-size: 30px;
                    display: block;
                    margin: 0 auto 2px;
                }

                #floating ul li a:hover .icon {
                    color: #008cd6;
                }

                #floating ul li a .num {
                    min-width: 16px;
                    height: 16px;
                    background-color: #EB0F0F;
                    font-size: 12px;
                    color: #fff;
                    display: block;
                    border-radius: 16px;
                    line-height: 16px;
                    position: absolute;
                    right: 8px;
                    top: 0;
                }

                #floating ul li a .txt-en {
                    display: none;
                }

.jcarousel-wrapper {
    position: relative;
}

body:not(.album) .jcarousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.jcarousel ul {
    width: 20000em;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.jcarousel li {
    width: 200px;
    float: left;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px;
}

    .jcarousel li a {
        display: block;
    }

.img-responsive, .thumbnail > img, .thumbnail a > img, .carousel-inner > .item > img, .carousel-inner > .item > a > img {
    width: auto;
}

.pic a {
    display: block;
}

.d-flex {
    display: flex;
}

    .d-flex.alignItemC {
        align-items: center;
    }

.slick-style .slick-dots {
    position: relative;
    bottom: auto;
    margin: 20px auto;
}

.slick-style .slick-arrow, .slick-btn .slick-arrow {
    z-index: 20;
    width: 50px;
    height: 50px;
    background: #b5b5b5;
    border-radius: 50%;
}

    .slick-style .slick-arrow:hover, .slick-btn .slick-arrow:hover {
        background: #008cd6;
    }

.slick-btn .slick-arrow {
    position: relative;
    display: inline-block;
    top: auto;
    left: auto;
    right: auto;
    transform: translate(0, 0);
}

    .slick-btn .slick-arrow + .slick-arrow {
        margin-left: 10px;
    }

.slick-style .slick-arrow:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    transform: scale(0);
    transition: all .5s ease;
    z-index: -1;
}

.slick-style .slick-arrow:hover:after {
    transform: scale(1);
}

.slick-style .slick-arrow.slick-disabled {
    display: none !important;
}


.slick-style .slick-prev {
    left: 0;
}

.slick-style .slick-next {
    right: 0;
}


.slick-style .slick-prev:before, .slick-btn .slick-prev:before {
    content: "";
    background: url(../images/all/icon_arrow.svg) repeat-x;
    width: 30px;
    height: 30px;
    opacity: 1;
    position: absolute;
    top: 50%;
    background-size: contain;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) scaleX(-1);
    -ms-transform: translate(-50%, -50%) scaleX(-1);
    transition: all .5s;
    transform: translate(-50%, -50%) scaleX(-1);
}



.slick-style .slick-next:before, .slick-btn .slick-next:before {
    content: "";
    background: url(../images/all/icon_arrow.svg) repeat-x;
    width: 30px;
    height: 30px;
    opacity: 1;
    position: absolute;
    top: 50%;
    background-size: contain;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: all .5s;
}


.slick-style .slick-next:hover:before, .slick-btn .slick-next:hover:before {
    background-position: 30px 0;
}

.slick-style .slick-prev:hover:before, .slick-btn .slick-prev:hover:before {
    background-position: 30px 0;
}


.banner .slick-dots li button:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 0 15px #eee, 0 0 15px #fff;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    opacity: 1;
    transition: all .5s ease;
}

.banner .slick-dots li {
    width: auto;
    height: auto;
}

    .banner .slick-dots li button {
        width: 15px;
        height: 15px;
        background: transparent;
        border-radius: 50%;
    }

    .banner .slick-dots li.slick-active button:before {
        box-shadow: inset 0 0 0 15px #008cd6, 0 0 15px #fff;
    }


/********************* Header *********************/
.header {
    z-index:30;
}

    .header .navbar {
        z-index: 20;
    }

        .header .navbar .navbar-brand {
            background: url(../images/all/logo.svg) no-repeat;
            display: block;
            height: 80px;
            padding: 0;
            text-indent: -9999px;
            width: 296px;
            margin: 20px 0 20px 15px;
            background-size: contain;
        }

            .header .navbar .navbar-brand:hover {
                opacity: 0.7;
            }

        .header .navbar .navbar-nav {
        }

            .header .navbar .navbar-nav > li > a {
                color: #000;
                font-size: 18px;
                background-color: inherit;
                -webkit-transition: 0.3s all ease;
                -moz-transition: 0.3s all ease;
                -o-transition: 0.3s all ease;
                transition: 0.3s all ease;
            }

            .header .navbar .navbar-nav li a:hover,
            .header .navbar .navbar-nav li.b > a {
                background: none;
            }

            .header .navbar .navbar-nav li + li a {
                /*border-left: 1px solid #eee;*/
            }

            .header .navbar .navbar-nav li a .txt-en {
                margin-left: 5px;
                color: #ccc;
                font-weight: normal;
                float: right;
            }

            .header .navbar .navbar-nav li a:focus {
                background-color: transparent;
            }

            .header .navbar .navbar-nav li a:hover .txt-en,
            body.about .header .navbar .navbar-nav li.b1 a .txt-en,
            body.product .header .navbar .navbar-nav li.b2 a .txt-en,
            body.news .header .navbar .navbar-nav li.b3 a .txt-en,
            body.contact .header .navbar .navbar-nav li.b4 a .txt-ens {
                color: #999;
            }

        .header .navbar .sub-nav {
            margin: 0;
            /*position: absolute;
    right: 15px;
    top: 20px;*/
        }

            .header .navbar .sub-nav li {
                padding: 0;
            }

                .header .navbar .sub-nav li a {
                    background-color: #008cd6;
                    background-position: center center;
                    background-repeat: no-repeat;
                    width: 32px;
                    height: 32px;
                    text-indent: -9999px;
                }


                .header .navbar .sub-nav li.icon_f a {
                    background-image: url(../images/all/icon_f.png);
                }

                .header .navbar .sub-nav li.icon_i a {
                    background-image: url(../images/all/icon_i.png);
                }

                .header .navbar .sub-nav li.icon_t a {
                    background-image: url(../images/all/icon_t.png);
                }

                .header .navbar .sub-nav li.icon_y a {
                    background-image: url(../images/all/icon_y.png);
                }

                .header .navbar .sub-nav li.icon_p a {
                    background-image: url(../images/all/icon_p.png);
                }

                .header .navbar .sub-nav li.icon_l a {
                    background-image: url(../images/all/icon_l.png);
                }

                .header .navbar .sub-nav li a:hover {
                    position: relative;
                    top: 2px;
                }

                .header .navbar .sub-nav li.b1 {
                    display: none;
                }

                .header .navbar .sub-nav li.b2 a {
                    background-position: 0 0;
                }


        .header .navbar .btn-default {
            -moz-border-radius: 0;
            -webkit-border-radius: 0;
            border-radius: 0;
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            box-shadow: none;
            padding: 5px 20px;
            border: 1px solid #ccc;
            color: #000;
            display: flex;
            align-items: center;
            border-radius: 30px;
        }

            .header .navbar .btn-default img {
                width: 20px;
                margin-right: 5px;
            }



        .header .navbar .lang .dropdown-menu {
            background: #ededed;
            color: #fff;
            border: none;
            min-width: 0;
            border-radius: 10px;
            padding: 0;
            overflow: hidden;
            right: 0;
        }

            .header .navbar .lang .dropdown-menu a {
                color: #000;
                padding: 10px 15px;
                text-align: center;
            }

                .header .navbar .lang .dropdown-menu a:hover {
                    background: #008cd6;
                    color: #fff;
                }

    .header .nav_btn_group {
    }

    .header .navbar .lang, .header .navbar .sub-nav {
        display: inline-block;
        vertical-align: top;
    }

    .header .g-nav {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .header .g-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
/*----------------------- Banner -----------------------*/
.banner .bannerImgBox {
    visibility: hidden;
}

    .banner .bannerImgBox.slick-initialized,
    .banner .bannerImgBox.oneMode {
        visibility: visible;
    }

html.no-js .banner .bxslider,
html.no-js .banner .bxslider img {
    display: none;
}

html.js .banner .bxslider {
    display: block;
}


.banner {
    position: relative;
}

    .banner .loadingbar {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }

body.VIDEOLOADED .banner .loadingbar {
    display: none;
}

.banner .container-fluid {
    padding: 0;
}

.banner .video_banner {
    width: 100%;
}

.banner .bxslider .bannerImgBox:not(.banner_mob_bg) .item {
    width: 100%;
    background: none !important;
}

.banner .bxslider .bannerImgBox.banner_mob_bg .item {
    height: 250px;
    background-repeat: no-repeat;
    background-position: center center;
}

body.home .banner .bxslider .bannerImgBox.banner_mob_bg .item {
    height: 500px;
}

.banner .video_sec {
    width: 100%;
}

.banner .bxslider .item img {
    width: 100%;
    display: none;
}


.banner .bxslider .bannerImgBox:not(.banner_mob_bg) .item img.img_small {
    display: none;
}

.banner .bxslider .bannerImgBox:not(.banner_mob_bg) .item img.img_big {
    display: block;
}

.banner .slick-prev:before, .banner .slick-next:before {
    color: #1eb5be;
}

.banner .bx-wrapper {
    margin-bottom: 0;
}

    .banner .bx-wrapper .bx-viewport {
        left: 0;
        background: none;
        border: none;
        box-shadow: none;
    }

    .banner .bx-wrapper .bx-pager.bx-default-pager {
        bottom: 2px;
        text-align: right;
        padding: 0 15px;
    }

        .banner .bx-wrapper .bx-pager.bx-default-pager a {
            text-align: left;
            background: #404040;
        }

            .banner .bx-wrapper .bx-pager.bx-default-pager a.active {
                background: #1EB5BE;
            }

    .banner .bx-wrapper .bx-controls-direction {
        display: none;
    }

body.full .banner .container {
    margin: 0;
    max-width: 100%;
    width: 100%;
}

body.full .banner .bx-wrapper .bx-controls-direction a.bx-prev {
    left: 0;
}

body.full .banner .bx-wrapper .bx-controls-direction a.bx-next {
    right: 0;
}


.header_ex {
}

.header .navbar .navbar-nav > li > a:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #008cd6;
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
    z-index: -1;
}

.header .navbar .navbar-nav > li > a:hover:after {
    transform-origin: left;
    transform: scaleX(1);
}
/********************* Footer *********************/
.footer {
    padding: 70px 0;
    background: #3a3042;
    color: #fff;
}

    .footer a {
        color: #fff;
    }

.footer_top ul li {
    padding: 0;
}

    .footer_top ul li:nth-child(2n) {
        display: none;
    }

    .footer_top ul li,
    .footer_top ul li a {
        padding: 10px;
    }

        .footer_top ul li a:hover {
            color: #008cd6;
        }

        .footer_top ul li a .txt-en {
            display: none;
        }

.footer_content {
}

.footer .copyright b {
    color: #fff;
}

.footer .copyright,
.footer .siteinfo {
    display: inline-block;
    margin: 0 5px;
}

    .footer .siteinfo ul {
        display: inline-block;
    }

        .footer .siteinfo ul > li {
            padding: 0;
            margin-right: 30px;
            margin-bottom: 5px;
        }

            .footer .siteinfo ul > li.add {
                width: 100%;
                display: block;
            }

            .footer .siteinfo ul > li label {
                margin: 0;
                font-weight: normal;
                color: #fff;
            }

    .footer .siteinfo .sitemap-link {
        display: inline-block;
        background: url(../images/all/icon_map.png) no-repeat;
        width: 32px;
        height: 32px;
        text-indent: -9999px;
        vertical-align: text-bottom;
        margin-right: 20px;
    }

        .footer .siteinfo .sitemap-link:hover {
            position: relative;
            top: 2px;
        }

.footer .powered,
.footer .powered a {
    display: inline-block;
    color: #fff;
}

.footer .g-footer {
    justify-content: space-between;
    align-items: center;
}

.footer .d-copy {
    text-align: center;
}
/********************* cookie *********************/
body.cookie_agree .footer_content {
    padding-bottom: 80px;
}

.cookie {
    font-size: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    background: rgb(54, 185, 192);
    z-index: 100;
    border-top: 1px solid rgb(215, 215, 215);
    color: #fff;
    text-align: left;
}

    .cookie .txt {
    }

        .cookie .txt a {
            text-decoration: underline;
            color: #3c3c3c;
            font-size: 14px;
        }

    .cookie .agree-btn {
        padding: 5px 15px;
        display: inline-block;
        background: #fff;
        color: #333;
        margin-top: 3px;
        transition: all .3s ease;
    }

        .cookie .agree-btn:hover {
            background: #ccc;
        }

/********************* Main *********************/
.main {
    z-index: 20;
}

.side .h3 {
    margin-top: 0;
    color: #008cd6;
    font-size: 18px;
    text-align: left;
    line-height: 28px;
    font-weight: bold;
    border-bottom: 3px solid;
    padding-bottom: 10px;
}

    .side .h3 .txt-en,
    .side .h3 .txt-tw {
        display: block;
    }

    .side .h3 .txt-en {
        display: none;
    }

.side .nav > li + li {
    border-top: 1px solid #ccc;
}

.side .nav > li a {
    display: block;
    line-height: 20px;
    padding: 8px 10px 8px 22px;
    color: #333;
    background: url(../images/all/list_icon.png) no-repeat -20px 8px;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

    .side .nav > li a:hover,
    .side .nav > li a:focus,
    .side .nav > li.active a {
        background-position: 0 8px;
        color: #02b7c1;
    }

.side .nav > li > ul {
    padding-left: 20px;
    list-style-type: none;
}

    .side .nav > li > ul > li {
    }

        .side .nav > li > ul > li > a,
        .side .nav > li > ul > li > a:hover {
            background: url(../images/all/list_icon2.png) no-repeat 0 6px;
            padding: 6px 10px 6px 20px;
        }

        .side .nav > li > ul > li > ul {
            margin-left: 9px;
            list-style-type: none;
            border-left: 1px solid #39ace8;
        }

            .side .nav > li > ul > li > ul > li {
            }

                .side .nav > li > ul > li > ul > li > a,
                .side .nav > li > ul > li > ul > li > a:hover {
                    padding: 6px 10px 6px 20px;
                    background:none;
                }






/*----------------------- Content -----------------------*/
.main_content {
    min-height: 300px;
    padding: 50px 0;
}

body.home .main_content {
    min-height: 0;
    padding: 0;
}

    body.home .main_content > .container {
        width: 100%;
        padding: 0;
    }

.content .breadcrumb {
    background: none;
    margin: 0;
    font-size: 13px;
    position: absolute;
    right: 10px;
    top: 10px;
}

.breadcrumb > li + li:before {
    content: "＞";
}

.content .breadcrumb .txt-en {
    display: none;
}

.content > .h2,
body.about .content > .h1,
body.order .content .h2.t04 {
    color: #000000;
    font-size: 30px;
    /* border-bottom: 1px solid #ccc; */
    /* padding: 5px 10px 15px; */
    margin-bottom: 40px;
    padding-bottom: 10px;
    margin-top: 0;
}

    .content > .h2 .txt-en {
         display:none;
    }


.content .content-banner {
    margin-bottom: 20px;
}

.content .txt {
    line-height: 30px;
}

.content .btn-more {
    font-size: 18px;
    color: #000;
    border: 1px solid #a5a5a5;
    border-radius: 30px;
    padding: 5px 20px;
    display: block;
}

    .content .btn-more:hover {
        background: #008cd6;
        color: #fff;
        border: 1px solid #008cd6;
    }

.content .btn-normal {
    background: none;
    color: #008cd6;
    border: 1px solid #ccc;
}

    .content .btn-normal:hover {
        color: #888;
        border-color: #aaa;
    }

.content .list-box .txt-list {
    margin-bottom: 60px;
}


    .content .list-box .txt-list li:nth-child(2n+1) {
        background-color: rgba(240,240,240,0.3);
    }

    .content .list-box .txt-list li .h4 {
        font-size: 15px;
        margin: 0;
    }

    .content .list-box .txt-list li a {
        position: relative;
        line-height: 28px;
        display: flex;
    }


        .content .list-box .txt-list li a:hover,
        .content .list-box .txt-list li a:focus {
            color: #008cd6;
        }



    .content .list-box .txt-list li span.news-title {
        float: left;
        color: #848275;
        width: 78%;
    }

    .content .list-box .txt-list li.list-header {
        background: none;
        padding-left: 40px;
        padding-right: 15px;
        border-bottom: 1px solid #ccc;
        display: none;
    }

        .content .list-box .txt-list li.list-header a,
        .content .list-box .txt-list li.list-header a span {
            color: #008cd6;
            font-size: 18px;
        }

            .content .list-box .txt-list li.list-header a span {
                padding-right: 24px;
            }

.content .works-box .pic-carousel li a {
    border: 1px solid #ccc;
    padding: 2px;
    display: block;
}

    .content .works-box .pic-carousel li a:hover {
        border-color: #008cd6;
    }

.content .works-box .bx-wrapper .bx-controls-direction a {
    width: 24px;
    height: 40px;
    background: url(../images/home/arrow.png) no-repeat;
}

    .content .works-box .bx-wrapper .bx-controls-direction a.bx-prev {
        left: -24px;
    }

    .content .works-box .bx-wrapper .bx-controls-direction a.bx-next {
        right: -24px;
        background-position: 0 -40px;
    }

.content .works-box .slick .list_item {
    padding: 0 5px;
}

    .content .works-box .slick .list_item .pic {
        border: 1px solid #ccc;
        padding: 2px;
        display: block;
    }

    .content .works-box .slick .list_item:hover .pic {
        border-color: #008cd6;
    }

    .content .works-box .slick .list_item .info {
        text-align: center;
        display: none;
    }

        .content .works-box .slick .list_item .info p {
            margin: 0;
        }

.content .works-box .slick .slick-arrow {
    width: 24px;
    height: 40px;
    background: url(../images/home/arrow.png) no-repeat;
    border: none;
    outline: none;
    text-indent: -9999px;
    position: absolute;
    z-index: 1;
    top: calc(50% - 40px/2);
}

.content .works-box .slick .slick-prev {
    background-position: 0 0;
    left: -24px;
}

.content .works-box .slick .slick-next {
    background-position: 0 -40px;
    right: -24px;
}

.content .works-box .slick .slick-dots {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin-top: 20px;
}

    .content .works-box .slick .slick-dots li {
        display: inline-block;
    }

    .content .works-box .slick .slick-dots button {
        width: 10px;
        height: 10px;
        background: #c7c7c7;
        border-radius: 50%;
        border: none;
        outline: none;
        text-indent: -9999px;
        margin: 0 3px;
    }

    .content .works-box .slick .slick-dots .slick-active button {
        background: #37bac0;
    }

.content .contact-box ul li {
    color: #717171;
    padding-left: 20px;
    font-size: 12px;
    line-height: 1.8;
}

    .content .contact-box ul li.tel {
        font-size: 22px;
        color: #333;
        font-weight: bold;
    }

.content .sec {
    padding: 10px;
    line-height: 30px;
}

.content .btn-box {
    margin: 50px 0 20px;
    clear: both;
}

    .content .btn-box:after {
        content: " ";
        visibility: hidden;
        display: block;
        height: 0;
        clear: both;
    }

    .content .btn-box .pager {
        text-align: left;
        display: inline-block;
        margin: 0 0 20px;
        float: left;
    }

        .content .btn-box .pager li {
            margin: 0 5px;
        }

            .content .btn-box .pager li > a {
                background: #fff;
                -webkit-border-radius: 5px;
                -moz-border-radius: 5px;
                border-radius: 5px;
                border: 1px solid #DFDFDF;
                color: #888;
                padding: 5px 20px;
                -webkit-transition: 0.3s all ease;
                -moz-transition: 0.3s all ease;
                -o-transition: 0.3s all ease;
                transition: 0.3s all ease;
            }

                .content .btn-box .pager li > a:hover {
                    background-color: #008cd6;
                    color: #fff;
                }

                .content .btn-box .pager li > a .icon {
                    display: none;
                }

body.product.p02 .content .btn-box {
    border: none;
}

body.news.show .content .btn-box,
body.faq.ask .content .btn-box,
body.product.show .content .btn-box,
body.member .content .btn-box,
body.album.show .content .btn-box {
    text-align: center;
}

    body.news.show .content .btn-box .pager,
    body.faq.ask .content .btn-box .pager,
    body.product.show .content .btn-box .pager,
    body.member .content .btn-box .pager,
    body.album.show .content .btn-box .pager {
        float: none;
    }

.content .btn-box a .icon {
    background: url(../images/all/pager_icon.png) no-repeat;
    display: inline-block;
    vertical-align: text-bottom;
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.content .btn-box a .icon-first {
    background-position: -6px -1px;
}

.content .btn-box a .icon-prev {
    background-position: -6px -29px;
}

.content .btn-box a .icon-next {
    background-position: -6px -58px;
}

.content .btn-box a .icon-last {
    background-position: -6px -87px;
}

.content .btn-box a .icon-back {
    background-position: -6px -112px;
}

.content .btn-box .page-info {
    float: right;
    margin: 0 5px;
    text-align: center;
    color: #888;
}

    .content .btn-box .page-info select {
        border: 1px solid #DFDFDF;
        min-width: 60px;
        margin-right: 10px;
    }


.content .btn-box a span {
    margin-right: 5px;
}

.content .table.table-stack {
    margin-bottom: 0;
}

    .content .table.table-stack > thead > tr > th {
        border-bottom: 1px solid #ccc;
        color: #333;
        text-align: center;
    }

    .content .table.table-stack > tbody > tr > td {
        vertical-align: middle;
        border-top: 1px dotted #ccc;
        text-align: center;
    }

        .content .table.table-stack > tbody > tr > td a {
            color: #008cd6;
        }

            .content .table.table-stack > tbody > tr > td a:hover {
                text-decoration: underline;
            }

        .content .table.table-stack > tbody > tr > td.pic img {
            max-width: 100px;
        }

            .content .table.table-stack > tbody > tr > td.pic img:hover {
                opacity: 0.7;
            }

        .content .table.table-stack > tbody > tr > td.qty .input-group .form-control {
            padding: 6px;
            text-align: center;
            border-color: #DFDFDF;
        }

        .content .table.table-stack > tbody > tr > td .input-group {
            width: 100px;
            margin: 0 auto;
        }

        .content .table.table-stack > tbody > tr > td .btn {
            margin: 0;
            color: #888;
        }

            .content .table.table-stack > tbody > tr > td .btn:hover,
            .content .table.table-stack > tbody > tr > td .btn:focus,
            .content .table.table-stack > tbody > tr > td .btn:active {
                color: #fff;
                text-decoration: none;
            }

        .content .table.table-stack > tbody > tr > td .tn {
            display: none;
        }

    .content .table.table-stack.no-border th,
    .content .table.table-stack.no-border td {
        border: none;
    }

    .content .table.table-stack.no-border tr {
        border-bottom: 1px dotted #ccc;
    }

    .content .table.table-stack.no-border th {
        text-align: right;
        width: 120px;
    }

    .content .table.table-stack.no-border td {
        text-align: left;
        vertical-align: top;
    }

.content .form-horizontal .control-label {
    font-size: 14px;
}

.form-horizontal .row .form-inline {
    padding-bottom: 15px;
}

    .form-horizontal .row .form-inline .zip-code {
        width: 20%;
        min-width: 72px;
    }

.gotop {
    margin: 40px 0;
    position: relative;
}

    .gotop:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        height: 1px;
        background: #fff;
        transform: translateY(-50%);
    }

    .gotop a {
        display: block;
        width: 38px;
        height: 38px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        position: relative;
        z-index: 5;
        padding: 5px;
    }

        .gotop a .txt-en {
            display: block;
        }

        .gotop a .txt-tw {
            color: #bdebed;
            font-size: 13px;
            border-top: 1px solid #bdebed;
            padding: 5px 40px;
        }

/*----------------------------------------- 首頁 home --------------------------------------*/
.sec-home .h2 {
    font-size: 30px;
    color: #000;
    margin-top: 0;
    margin-bottom: 40px;
}

    .sec-home .h2 .txt-en {
        display: inline-block;
        font-size: 40px;
        font-weight: bold;
        color: #008cd6;
        margin-right: 20px;
        font-family: 'Lato', sans-serif;
    }

body.home .content .wid-home-news {
    margin-left: 0;
}

    body.home .content .wid-home-news .txt-list {
        margin-bottom: 10px;
        margin-top: -10px;
    }

        body.home .content .wid-home-news .txt-list li {
            padding-left: 14px;
            background-position: 0 4px;
            background-color: transparent;
        }

            body.home .content .wid-home-news .txt-list li:last-child {
                border-bottom: 2px solid #ccc;
            }

            body.home .content .wid-home-news .txt-list li a {
                padding: 2px 80px 2px 0;
                font-size: 13px;
            }

                body.home .content .wid-home-news .txt-list li a span {
                    padding: 3px 0;
                    font-size: 12px;
                    top: 3px;
                }

body.home .wid-home-product .slick-slider {
    margin: 0 -15px;
}

.sec-home {
    padding-top: 120px;
    padding-bottom: 120px;
}

    .sec-home .h2:before, .content > .h2:before, body.about .content > .h1:before, body.order .content .h2.t04:before {
        content: "";
        width: 26px;
        height: 28px;
        background: url(../images/all/icon_title.png) no-repeat;
        display: inline-block;
        vertical-align: top;
        margin-right: 10px;
    }

    .sec-home .h2 span {
        display: inline-block;
        vertical-align: middle;
    }

        .sec-home .h2 span.txt-tw {
            border-left: 1px solid #ccc;
            padding-left: 20px;
        }

.home-pro .wid {
    width: 70%;
    margin: 0 0 0 auto;
    padding-bottom: 70px;
}

.home-pro {
    position: relative;
    overflow: hidden;
}

    .home-pro:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: rgb(255, 255, 255);
        background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
        height: 30%;
        z-index: 5;
        pointer-events: none;
    }

    .home-pro .h2 {
        display: table;
        margin: 0 0 40px auto;
    }

    .home-pro .bg {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
    }

    .home-pro .g-btn {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 30px 0;
    }

    .home-pro .pro-slider .item {
        margin: 0 15px;
    }

        .home-pro .pro-slider .item .pic {
            overflow: hidden;
            box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
            display: block;
        }

            .home-pro .pro-slider .item .pic img {
                transform: scale(1);
                transition: all .5s;
            }

        .home-pro .pro-slider .item:hover .pic img {
            transform: scale(1.1);
        }

        .home-pro .pro-slider .item .price {
            display: none;
        }

        .home-pro .pro-slider .item .info {
            background: #e78f30;
            color: #fff;
            font-size: 18px;
            width: 60%;
            margin: -20px 0 0 15px;
            display: block;
            position: relative;
            padding: 5px 10px;
            clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
        }

            .home-pro .pro-slider .item .info p:not(.title) {
                display: none;
            }

    .home-pro .wid:before {
        content: "";
        display: block;
        background: url(../images/all/bg_curve.jpg) no-repeat;
        position: absolute;
        bottom: 0;
        left: -60px;
        right: -180px;
        height: 40%;
        background-size: cover;
        transition: all 1s;
        transform: translateX(100%);
    }

    .home-pro.aos-animate .wid:before {
        transform: translateX(0);
    }

.home-about {
    position: relative;
    padding-top: 0;
}

    .home-about .d-top {
        background: #f6f6f6;
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .home-about .bg {
        position: absolute;
        top: 120px;
        right: 0;
        bottom: 120px;
        width: 50%;
        overflow: hidden;
        z-index: 5;
    }

    .home-about .info {
        width: 45%;
    }

    .home-about .vision-list li {
        display: flex;
        align-items: center;
        margin-bottom: 30px;
    }

    .home-about .vision-list .icon {
        background: #fff;
        border-radius: 15px;
        margin-right: 20px;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
        padding: 20px;
        flex-shrink: 0;
    }
    .home-about .vision-list .icon img{
        margin-bottom: 0;
    }

    .home-about .d-end {
        background: #fff;
        padding: 50px 0 120px;
    }

        .home-about .d-end .pic {
            width: 25%;
        }

            .home-about .d-end .pic img {
                width: 100%;
            }

.sec-home .bg img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}










/*----------------------------------------- 相簿 album --------------------------------------*/
body.album .content > .h1 {
    text-align: center;
    color: #008cd6;
    border: 1px solid #ccc;
    padding: 10px;
}

.content .album-list a {
    margin: 20px 0;
    display: block;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .content .album-list a:hover {
        opacity: 0.7;
    }

    .content .album-list a img {
        width: 100%;
    }

    .content .album-list a .h4 {
        text-align: center;
        color: #666;
        font-size: 15px;
    }

    .content .album-list a .pic {
        border: 1px solid #e5e5e5;
        padding: 2px;
    }

.pic-gallery {
    margin-bottom: 40px;
    margin-top: 30px;
}

    .pic-gallery .pic-stage {
        margin: 0 auto 20px;
        width: 87%;
    }

        .pic-gallery .pic-stage ul li a {
            display: block;
        }

    .pic-gallery .pic-pager {
        position: relative;
        margin: 0 40px;
    }

        .pic-gallery .pic-pager .jcarousel div a {
            opacity: 0.5;
            float: left;
            padding: 0 5px;
        }

            .pic-gallery .pic-pager .jcarousel div a.active {
                opacity: 1;
            }

    .pic-gallery .pic-stage .bx-wrapper .bx-pager {
        display: none;
    }

    .pic-gallery .pic-stage .bx-wrapper .bx-controls-direction a,
    .pic-gallery .pic-pager .jcarousel-control,
    .pic-gallery .slick-prev,
    .pic-gallery .slick-next {
        background: url(../images/all/gallery_btn.png) no-repeat;
        display: block;
        width: 40px;
        height: 40px;
        margin-top: -10px;
        position: absolute;
        top: 50%;
    }

    .pic-gallery .pic-pager .jcarousel div {
        /*overflow: auto;
    width: 20000em;
    position: relative;
    list-style-type: none;*/
    }

        .pic-gallery .pic-pager .jcarousel div a img,
        .pic-gallery .pic-stage ul li a img {
            width: 100%;
        }

    .pic-gallery .pic-stage .bx-wrapper .bx-controls-direction a.bx-prev,
    .pic-gallery .slick-prev {
        background-position: 0 0;
        left: -45px;
    }

    .pic-gallery .pic-stage .bx-wrapper .bx-controls-direction a.bx-next,
    .pic-gallery .slick-next {
        background-position: -38px 0;
        right: -45px;
    }

    .pic-gallery .pic-pager .jcarousel-control-prev,
    .pic-gallery .pic-pager .slick-prev {
        background-position: -80px 0;
        left: -40px;
    }

    .pic-gallery .pic-pager .jcarousel-control-next,
    .pic-gallery .pic-pager .slick-next {
        background-position: -120px 0;
        right: -40px;
    }

    .pic-gallery .slick-prev:before,
    .pic-gallery .slick-next:before {
        display: none;
    }

    .pic-gallery .pic-pager .jcarousel div a.slick-current {
        opacity: 1;
    }


/*----------------------------------------- 活動訊息 news --------------------------------------*/
body.news .content > .h1 {
    position: relative;
    color: #008cd6;
    font-size: 20px;
    border: 1px solid #ccc;
    padding: 20px 0;
    line-height: 1.4;
    border-left: none;
    border-right: none;
    font-weight: bold;
    margin-bottom: 30px;
}

.h1.border-around {
    border: 1px solid #6a5b54;
}

body.news .content > .h1 small {
    display: table;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: normal;
}

.news-list span.date {
    display: block;
    padding: 10px;
    border-bottom: 2px solid #2D3142;
    color: #2D3142;
}

.news-list span.subject {
    border-bottom: 1px solid #ccc;
    flex-grow: 1;
    margin-left: 5px;
    display: flex;
    align-items: center;
    padding: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
}

/*----------------------------------------- 常見問題 faq --------------------------------------*/

.faq-box {
    margin-bottom: 50px;
}

    .faq-box .st {
        color: #008cd6;
        position: absolute;
        left: 15px;
        top: 13px;
        font-size: 16px;
    }

    .faq-box .panel {
        border: none;
        background: none;
    }

        .faq-box .panel + .panel {
            margin-top: 0;
        }

        .faq-box .panel > .panel-heading {
            background: none;
            border-bottom: 1px dotted #ccc;
            padding: 0;
            position: relative;
        }

            .faq-box .panel > .panel-heading a {
                padding: 15px;
                display: block;
                padding-left: 48px;
            }

            .faq-box .panel > .panel-heading + .panel-collapse > .panel-body {
                border-top: none;
                position: relative;
                padding-left: 48px;
                border-bottom: 1px dotted #ccc;
                color: #888;
                line-height: 30px;
            }

.btnbox-ask {
    text-align: right;
}

/*----------------------------------------- 作品展示 product --------------------------------------*/
.content .list-mode {
    display: none;
    text-align: center;
    color: #848275;
}

    .content .list-mode label {
        display: none;
    }

    .content .list-mode .btn-group {
        display: inline-block;
    }

        .content .list-mode .btn-group .btn-mode {
            color: #B6E5E9;
            background: none;
            border: none;
            padding: 5px 8px;
            -moz-border-radius: 0;
            -webkit-border-radius: 0;
            border-radius: 0;
            -moz-box-shadow: none;
            -webkit-box-shadow: none;
            box-shadow: none;
            font-size: 22px;
        }

            .content .list-mode .btn-group .btn-mode.active {
                color: #4CC1CC;
            }

            .content .list-mode .btn-group .btn-mode:hover {
                color: #3C98A1;
            }

            .content .list-mode .btn-group .btn-mode .mode-txt {
                display: none;
            }

body.product .content .product-list .item {
    border: 1px solid #dcdcdc;
    margin: 10px 0;
    position: relative;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    position: relative;
    background-color: #F3F3F3;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

body.product.p02 .content .product-list .item {
    margin-bottom: 60px;
}

body.product .content .product-list .item:hover {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border-color: #37bac0;
}

body.product .content .product-list.mode1 .item.i1 > a ul {
    height: 20px;
}

body.product .content .product-list.mode1 .item.i2 > a ul {
    height: 40px;
}

body.product .content .product-list.mode1 .item.i3 > a ul {
    height: 60px;
}

body.product .content .product-list.mode1 .item.i4 > a ul {
    height: 80px;
}

body.product .content .product-list .item > a {
    -moz-border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}

body.product .content .product-list a {
    display: block;
}

    body.product .content .product-list a .pic {
        -moz-border-radius: 5px 5px 0 0;
        -webkit-border-radius: 5px 5px 0 0;
        border-radius: 5px 5px 0 0;
        overflow: hidden;
        background: #fff;
        padding: 10px;
    }

        body.product .content .product-list a .pic img {
            -moz-border-radius: 5px 5px 0 0;
            -webkit-border-radius: 5px 5px 0 0;
            border-radius: 5px 5px 0 0;
            width: 100%;
            -webkit-transition: 0.3s all ease;
            -moz-transition: 0.3s all ease;
            -o-transition: 0.3s all ease;
            transition: 0.3s all ease;
        }

    body.product .content .product-list a:hover .pic img {
        opacity: 0.7;
    }

    body.product .content .product-list a .info {
        padding-top: 5px;
        padding-bottom: 5px;
        text-align: center;
    }

    body.product .content .product-list a .h4 {
        font-size: 15px;
        text-align: center;
    }

body.product .content .product-list ul {
    color: #848484;
    font-size: 13px;
    list-style-type: none;
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 10px;
}

body.product .content .quick-buy .form-control {
    padding: 5px;
    vertical-align: top;
    display: inline-block;
    width: auto;
}

body.product .content .quick-buy .btn {
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    width: 74px;
    height: 74px;
    background: #ec5f5f url(../images/all/icon_cart.png) no-repeat center center;
    color: #fff;
    text-indent: -9999px;
    position: absolute;
    bottom: -38px;
    right: 50%;
    margin-right: -37px;
    -webkit-transition: 0.3s all ease;
    -moz-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

    body.product .content .quick-buy .btn:hover {
        background-color: #51ced5;
    }

body.product .content .product-list.mode1 .quick-buy {
    padding: 10px 10px 50px;
    text-align: center;
}

    body.product .content .product-list.mode1 .quick-buy ul,
    body.product .content .product-list.mode1 .quick-buy ul li {
        display: inline-block;
        vertical-align: top;
    }

    body.product .content .product-list.mode1 .quick-buy .form-control.qty {
        width: 30%;
        vertical-align: middle;
    }

body.product.p02 .content .product-list.mode1 .item .info p {
    display: none;
}

body.product .content .product-list.mode2 > div {
    float: none;
    width: 100%;
    clear: both;
}

body.product .content .product-list.mode2 .item {
    position: relative;
    margin-bottom: 20px;
}

    body.product .content .product-list.mode2 .item:after {
        content: " ";
        visibility: hidden;
        display: block;
        height: 0;
        clear: both;
    }

    body.product .content .product-list.mode2 .item .pic {
        width: 36%;
        display: inline-block;
        vertical-align: top;
        margin-right: 5px;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        border-radius: 5px;
        padding: 0;
    }

    body.product .content .product-list.mode2 .item > a {
        padding: 10px;
        width: 70%;
        float: left;
    }

    body.product .content .product-list.mode2 .item .info {
        display: inline-block;
        vertical-align: top;
        width: 60%;
        text-align: left;
        padding-left: 10px;
    }

        body.product .content .product-list.mode2 .item .info .h4 {
            margin-bottom: 10px;
            text-align: left;
        }

        body.product .content .product-list.mode2 .item .info ul {
            text-align: left;
        }

            body.product .content .product-list.mode2 .item .info ul li {
            }

        body.product .content .product-list.mode2 .item .info p {
            margin: 5px 0 0;
            clear: both;
            color: #888;
            font-size: 14px;
            line-height: 1.4;
        }

    body.product .content .product-list.mode2 .item .quick-buy {
        width: 16%;
        float: left;
        padding: 20px 0 15px;
    }

        body.product .content .product-list.mode2 .item .quick-buy .form-control {
            width: 100%;
            display: inline-block;
            margin-bottom: 5px;
        }

        body.product .content .product-list.mode2 .item .quick-buy .btn {
            right: 10px;
            bottom: 50%;
            margin-right: 0;
            margin-bottom: -37px;
        }

body.product .content .content-banner {
    margin-top: 20px;
    border: 1px solid #635338;
    padding: 2px;
}

body.product .content .icon-addcart {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: url(../images/all/icon_cart.png) no-repeat;
    vertical-align: text-bottom;
    background-size: 100% auto;
    margin-bottom: -6px;
}

body.product.show .content .quick-buy .btn.goshop {
    background: #3da72a;
}

    body.product.show .content .quick-buy .btn.goshop:hover {
        background: #1b7277;
    }

body.product .content .goshop .icon-addcart {
    background-image: url('../images/all/icon_cart2.png');
}

body.product.show .content .quick-buy .btn {
    padding: 3px 10px;
}

body.product.show .content .icon-addcart {
    margin-right: 5px;
}


body.product.show .info .info_box {
}

    body.product.show .info .info_box .h6 {
        font-size: 15px;
        border-bottom: 1px solid #ccc;
        padding: 10px 0;
        position:relative;
        margin-bottom: 10px;
    }

        body.product.show .info .info_box .h6:after {
            content: "";
            display: block;
            background: url(../images/all/icon_arrow2.svg) center center;
            width: 25px;
            border-radius: 50%;
            height: 25px;
            position: absolute;
            right: 0;
            top: 50%;
            border:1px solid #ccc;
            transform: translateY(-50%);
            background-size: 24px;
        }


    body.product.show .info .info_box .info_txt {
        padding: 10px;
        background: #eee;
    }



body.product.show .content .product-pic {
    margin-bottom: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

    body.product.show .content .product-pic a {
        display: block;
    }

        body.product.show .content .product-pic a .img-zoom {
            width: 100%;
        }

    body.product.show .content .product-pic .zoomPad {
        float: none;
    }

    body.product.show .content .product-pic .zoomWindow {
        margin-left: 10px;
        left: 100% !important;
    }

body.product.show .content .jcarousel-wrapper {
    padding: 0 20px;
}

body.product.show .content .jcarousel-control-prev,
body.product.show .content .jcarousel-control-next {
    background: url(../images/home/arrow.png) no-repeat;
    display: block;
    top: 50%;
    width: 24px;
    height: 40px;
    margin-top: -20px;
    position: absolute;
}

body.product.show .content .jcarousel-control-prev {
    left: 0;
}

body.product.show .content .jcarousel-control-next {
    right: 0;
    background-position: 0 -40px;
}

body.product.show .content .jcarousel li a {
    padding: 2px;
    border: 1px solid #ccc;
}

body.product.show .content .jcarousel img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto !important;
}

/*-- for show2 product pic --*/
body.product.show .content .product-pic .big-pic a {
    cursor: zoom-in;
}

body.product.show .content .product-pic .small-pic {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

    body.product.show .content .product-pic .small-pic img {
        margin: 0 3px;
        outline: none;
        cursor: pointer;
    }

    body.product.show .content .product-pic .small-pic .slick-arrow {
        min-width: 20px;
        height: 40px;
        background: url(../images/home/arrow.png) no-repeat;
        border: none;
        outline: none;
    }

    body.product.show .content .product-pic .small-pic .slick-prev {
        background-position: center top;
    }

    body.product.show .content .product-pic .small-pic .slick-next {
        background-position: center bottom;
    }
/*-- END for show2 product pic --*/


body.product.show .content .info .h1 {
    margin-top: 0;
    font-size: 30px;
    font-weight: bold;
    color: #1e9adb;
}

body.product.show .content .info .txt {
    min-height: 200px;
    padding: 0;
}

    body.product.show .content .info .txt ul {
        margin-left: 0;
    }

        body.product.show .content .info .txt ul li {
            background: url(../images/all/list_icon.png) no-repeat 0 center;
            padding-left: 22px;
        }

body.product.show .content .quick-buy {
    border-top: 1px solid #bdbdbd;
    padding-top: 10px;
    margin-bottom: 10px;
}

body.product.show .content > .h3 {
    font-size: 18px;
    color: #008cd6;
    text-align: center;
    font-weight: bold;
}

    body.product.show .content > .h3 small {
        margin-left: 10px;
        color: #888;
        display:none;
    }
    body.product.show .content > .h3:before {
        content:"";
        background: url(../images/all/list_icon.png) no-repeat 0 center;
        width: 20px;
        height: 20px;
        display: inline-block;
        vertical-align: middle;
    }
    body.product.show .content > .h3:after {
        content: "";
        background: url(../images/all/list_icon.png) no-repeat 0 center;
        width: 20px;
        height: 20px;
        display: inline-block;
        vertical-align: middle;
    }




    body.product.show .content .txt {
        padding: 10px;
    }

body.product.show .content .quick-buy .btn {
    position: static;
    margin: 0;
    text-indent: 0;
    background-image: none;
    width: auto;
    height: auto;
    line-height: 42px;
    font-size: 18px;
    border-radius: 10px;
}

body.product.show .content .quick-buy .form-control,
body.product.show .content .quick-buy .btn {
    vertical-align: middle;
    margin-bottom: 10px;
}

body.product.show .content .product-list .item {
    margin-bottom: 20px;
    /*height: 265px;*/
    overflow: hidden;
}

.pro-list .item {
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    padding: 5px;
    margin-bottom: 30px;
    transition: all .5s;
}

    .pro-list .item .h4 {
        font-size: 18px;
        background: #e78f30;
        color: #fff;
        margin: 0;
        padding: 10px;
    }

    .pro-list .item a {
        display: block;
        border-radius: 10px;
        overflow: hidden;
    }

    .pro-list .item .pic {
        overflow: hidden;
    }

        .pro-list .item .pic img {
            transform: scale(1);
            transition: all .5s;
        }

    .pro-list .item:hover {
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }



        .pro-list .item:hover .pic img {
            transform: scale(1.1);
        }

    .pro-list .item .info ul {
        margin-bottom: 0;
    }

.pro-row {
    display: flex;
    flex-wrap:wrap;
}
    .pro-row .g-info {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }
/*----------------------------------------- 會員專區 member --------------------------------------*/
body.member .content .nav-func li a {
    text-align: center;
    color: #888;
    border: 1px solid #ccc;
    padding: 20px 10px;
    width: 116px;
    margin-bottom: 15px;
}

    body.member .content .nav-func li a .glyphicon {
        font-size: 26px;
        margin-bottom: 15px;
        color: #008cd6;
    }

    body.member .content .nav-func li a:hover {
        color: #aaa;
        border-color: #888;
    }

        body.member .content .nav-func li a:hover .glyphicon {
            color: #aaa;
        }

body.member.register .content .form-group .checkbox a {
    color: #008cd6;
}

    body.member.register .content .form-group .checkbox a:hover {
        text-decoration: underline;
    }

body.member #membership {
    max-width: 700px;
    display: none;
}

body.member .content .form-border {
    padding: 50px 20px;
}

body.member.register.finish .content .form-border {
    padding: 40px 50px;
}

body.member.forget .content .form-border {
    padding-top: 30px;
}


body.member .content {
    padding-bottom: 20px;
}

/*----------------------------------------- 訂單查詢 order --------------------------------------*/
body.order.show #msg-box {
    display: none;
    min-width: 300px;
}
/*----------------------------------------- 購物車 cart --------------------------------------*/
.content .sec .h3 {
    color: #008cd6;
    font-size: 16px;
    margin: 0 0 20px;
    position: relative;
    font-weight: bold;
}

body.cart.p03 .content .sec .h3,
body.cart.help .content .sec .h3 {
    padding: 10px;
    border: 1px solid #ccc;
}

body.cart.help .content .sec p {
    padding: 0 10px;
}

body.cart.help .content .sec ul {
    padding: 0 10px;
    margin-left: 20px;
    margin-bottom: 20px;
}

.content .sec .h3 span {
    margin-right: 10px;
}

.content .sec .sum {
    text-align: right;
    padding-right: 20px;
    font-size: 16px;
    border-top: 1px solid #ccc;
    line-height: 36px;
    font-weight: bold;
}

body.cart .content p {
    font-size: 14px;
}

    body.cart .content p a {
        display: inline-block;
        color: #008cd6;
    }

        body.cart .content p a:hover {
            color: #888;
        }

body.cart .content .btn-box {
    text-align: left;
    padding-left: 15px;
    padding-right: 15px;
}

body.cart .content .invoice-title {
    display: inline-block;
    margin-left: 5px;
}

body.cart .content .hint {
    float: right;
}

body.cart .content .btn-list {
    color: #008cd6;
    display: inline-block;
    line-height: 24px;
    font-size: 13px;
    position: absolute;
    right: 5px;
    border: 1px solid #ccc;
    padding: 0 5px;
}

    body.cart .content .btn-list:hover {
        color: #888;
        border-color: #ccc;
    }

    body.cart .content .btn-list span {
        margin-right: 10px;
    }

body.cart .content .invoice .btn-list {
    position: static;
    margin-top: 12px;
    float: right;
}

body.cart .content .invoice .form-inline:after {
    content: " ";
    clear: both;
    display: block;
}

body.cart .lightbox-list {
    min-width: 400px;
    display: none;
}

    body.cart .lightbox-list .h4 {
        font-size: 18px;
        padding: 0 5px;
    }

        body.cart .lightbox-list .h4 small {
            display: inline-block;
        }

    body.cart .lightbox-list .glyphicon {
        margin-right: 5px;
    }

    body.cart .lightbox-list ul li {
        border-top: 1px solid #62544C;
    }

        body.cart .lightbox-list ul li a {
            color: #666;
            padding: 10px;
            display: block;
        }

            body.cart .lightbox-list ul li a:hover {
                background-color: #eee;
            }


/*----------------------------------------- 聯絡我們 contact --------------------------------------*/
body.contact  .d-map iframe {
    width: 100%;
    height: 300px;
    display:flex;
}

body.contact .content .contact-box .h3 {
    margin-bottom: 10px;
}

body.contact .content .contact-box ul li {
    padding-left: 10px;
}
body.contact .g-form {
    display: flex;
    position:relative;
}
    body.contact .g-form:before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 50%;
        background: url(../images/all/bg_proH.jpg) no-repeat 0 center;
        background-size: cover;
        z-index: -2;
        opacity: .5;
    }
    body.contact .g-form:after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 50%;
        background: rgb(255,255,255);
        background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,1) 100%);
        z-index: -1;
    }



body.contact .g-form .l-info {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: -80px;
    position: relative;
    z-index: 5;
    background: #fff;
    width: 70%;
}
    body.contact .g-form .r-info .h3 {
        font-size: 30px;
        font-weight: bold;
        color: #008cd6;
        margin-bottom: 40px;
    }
    body.contact .g-form .form-horizontal .form-group > * {
        width: 100%;
    }
body.contact .content .form-horizontal .control-label {
    text-align: left;
    margin-bottom: 5px;
    padding-top: 0;
}
body.contact .g-form .l-info .g-btn{
    margin:0 -10px;
}
body.contact .g-form .l-info .g-btn > * {
    flex-grow: 1;
    margin: 0 10px;
}
body.contact .g-form .r-info {
    display: flex;
    flex-direction: column;
    padding-left: 40px;
    padding-top: 50px;
    justify-content: space-around;
    align-items: flex-end;
    position:relative;
}
    body.contact .g-form .r-info:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 50%;
        background: rgb(255,255,255);
        background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
        z-index: -1;
    }


    body.contact .g-form .c-info li + li {
        margin-top: 10px;
    }
body.contact .g-form .pic-logo {
    filter: grayscale(1);
    opacity: .5;
}

/*----------------------------------------- widgets --------------------------------------*/
/* 預設共用 */
.wid {
    position: relative;
    z-index: 10;
    margin-bottom: 30px;
}

.side .wid .h3 .side-toggle {
    display: none;
}

.side1 .wid {
    max-width: 254px;
}

/* 搜尋產品 wid-search */
.wid-search .h3 {
    color: #008cd6;
    font-size: 15px;
    text-align: center;
    margin-bottom: 15px;
    display: none;
}

    .wid-search .h3 .txt-tw {
    }

.wid-search .form-group {
    width: 100%;
}

    .wid-search .form-group .form-control {
        margin-bottom: 5px;
        width: 100%;
    }

.wid-search .btn {
    width: 100%;
}

    .wid-search .btn .txt-en {
        display: none;
    }

/* 商品推廌 wid-slideBanner */
.wid-slideBanner ul {
    list-style-type: none;
}

    .wid-slideBanner ul li a {
        display: block;
    }

        .wid-slideBanner ul li a img {
            width: 100%;
        }

.wid-slideBanner .jcarousel-control-prev,
.wid-slideBanner .jcarousel-control-next {
    position: absolute;
    display: block;
    width: 18px;
    height: 30px;
    background: url(../images/home/arrow.png) no-repeat;
    background-size: 100% auto;
    top: -39px;
}

.wid-slideBanner .jcarousel-control-prev {
    right: 16px;
}

.wid-slideBanner .jcarousel-control-next {
    right: 0;
    background-position: 0 -30px;
}

.form-group input[type=checkbox] + label {
    margin-right: 1em;
}



/*---------------------- 下拉選單 subNav  dropdownMenu --------------------*/
.navbar .navbar-nav .dropdown_submenu.pos_static {
    position: static;
}

.navbar-nav .dropdown_submenu > ul > li > ul > li {
    list-style: none;
}

    .navbar-nav .dropdown_submenu > ul > li > ul > li a {
        display: block;
    }

.navbar-nav .dropdown_submenu .dropdown-menu {
    left: auto;
    margin-top: -4px;
}

.navbar-nav .minwidth {
    min-width: 100px;
    padding: 0;
}



.navbar-nav .dropdown_submenu {
    position: relative;
}

li.hover_r_sider.dropdown_submenu {
    position: relative;
}


.navbar-nav .dropdown-menu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

@media (min-width: 768px) {
    .navbar-nav .dropdown_submenu > ul > li > ul > li {
        /* margin-left: 15px; */
    }

    .dropdown_submenu .dropdown_submenu > a:after {
        display: block;
        content: " ";
        float: right;
        width: 0;
        height: 0;
        border-color: transparent;
        border-style: solid;
        border-width: 5px 0 5px 5px;
        border-left-color: #ccc;
        margin-top: 5px;
        margin-right: -10px;
    }
}
/*------------------------subNav  dropdownMenu --------------------*/

/*about*/
.eZShareBar{
    margin-bottom: 30px;
}
.son-about .d-preface{
    background:#f6f6f6;
    display: flex;
}
.son-about .d-preface .l-info{
    width: 35%;
    position: relative;
}
.son-about .d-preface .l-info img{
    object-fit: cover;
    height: 100%!important;
    width: 100%;
}
.son-about .d-preface .l-info:before{
    content:"";
    position: absolute;
    top:0;
    right:0;
    bottom:0;
    width: 15%;
    background: rgb(246,246,246);
    background: linear-gradient(262deg, rgba(246,246,246,1) 0%, rgba(255,255,255,0) 100%);
}
.son-about .d-preface .r-info{
    width: 65%;
    padding: 60px 30px;
}
.son-about .d-preface .r-info .pic-txt{
    width: 50%;
    margin-bottom: 30px;
}.son-about .d-preface .r-info .pic-txt img{
    width: 100%;
}
.son-about .pic-pro{
    margin: -45px 30px 0 auto;
    position: relative;
    justify-content: flex-end;
}
.son-about .pic-pro .pic{
    border-radius: 50%;
    border:4px solid #008cd6;
    overflow: hidden;
    margin:0 20px;
    width: 90px;
}
.son-about img{
    margin-bottom: 0!important;
}
.son-about .business-list {
    margin-top:50px;
}
.son-about .business-list .item{
    padding-left: 30px;
    padding-right: 30px;
}
.son-about .business-list .h3{
    display: flex;
    font-weight: bold;
    align-items: center;
}