﻿@charset "utf-8";
/* 設計師用 桌機版CSS檔 style.css */
/* 說明：
    可提供設計師在此檔，針對桌機版面進行設計；為網站必載CSS檔。*/

html, body {
    font-size: 16px;
    color: #000;
    font-family: 'Noto Sans TC', sans-serif;
}

    body:before {
        content: ' ';
        position: fixed;
        z-index: -1;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: #ffdd79;
    }

    body.home:before {
        background-image: url(../images/all/moto02.png), url(../images/all/img_right.png), url(../images/all/img_left.png), url(../images/all/main_topbg.png), url(../images/all/banner.jpg), url(../images/all/main_downbg.jpg), url(../images/all/main_bg.jpg);
        background-repeat: no-repeat;
        background-position: right 5% bottom, right -3% top 55%, left -10% top 20%, center top 220px, center top -190px,center bottom, center top 50%
    }

    body:not(.home):before {
        background-image: url(../images/all/img_right.png), url(../images/all/img_left.png), url(../images/all/main_topbg.png), url(../images/all/banner.jpg), url(../images/all/main_downbg.jpg), url(../images/all/main_bg.jpg);
        background-repeat: no-repeat;
        background-position: right -3% top 55%, left -10% top 4%, center top 70px, center top -330px, center bottom, center top 50%;
    }


p {
    font-weight: 400;
    line-height: 1.8em;
    margin-bottom: 0.8em;
}

h1, .h1 {
    font-weight: 400;
    font-size: 1.875rem;
    line-height: 1.6rem;
    letter-spacing: 3px;
    color: #4bb4be;
    margin-bottom: 1em;
    margin-left: 15px;
    margin-right: 15px;
    text-decoration: none;
}

    h1 .text-en, .h1 .text-en {
        letter-spacing: 0;
        font-weight: 400;
        font-size: 60%;
        color: #BFBFBF;
        margin-left: 5px;
    }

        h1 .text-en:before, .h1 .text-en:before {
            content: '/';
            color: #5daa04;
            margin-right: 5px;
            font-weight: 700;
        }

h2, .h2 {
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1.6em;
    color: #5daa04;
    text-decoration: underline;
}

h3, .h3 {
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.6rem;
    color: #5daa04;
    letter-spacing: 0;
}

h4, .h4 {
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.4rem;
    color: #5daa04;
    margin-bottom: 15px;
}

h5, .h5 {
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.4rem;
    color: #BFBFBF;
    margin-left: 15px;
}

body.member h5 {
    color: red;
}

a {
    color: #5daa04;
    transition: all ease 0.3s;
}

    a:hover {
        color: #ff7c5e;
    }

.btn {
    color: #fff;
    display: block;
    font-size: 16px;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    background: #9A9A9A;
    box-shadow: 0 2px 5px #AFAFAF;
    text-shadow: 0 0 1px rgba(0,0,0,0.6);
    border: 1px solid transparent;
}

.btn-primary {
    background: #ff7c5e;
    filter: brightness(1.1);
}

    .btn-primary:hover,
    .btn-primary:active,
    .btn-primary:focus {
        background: #ff7c5e;
        filter: brightness(1);
        border-color: transparent;
    }

.btn-success {
    background: #5daa04;
    filter: brightness(1);
}

    .btn-success:hover,
    .btn-success:active,
    .btn-success:focus {
        background: #5daa04;
        filter: brightness(1.1);
        border-color: transparent;
    }

.btn-cancel {
    background: #9A9A9A;
    filter: brightness(1);
}

    .btn-cancel:hover,
    .btn-cancel:active,
    .btn-cancel:focus {
        background: #9A9A9A;
        filter: brightness(0.8);
        border-color: transparent;
        color: #fff;
    }

.btn-inquiry {
    background: #ff7c5e;
    padding: 4px;
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-bottom: 0;
}

    .btn-inquiry:hover,
    .btn-inquiry:active,
    .btn-inquiry:focus {
        background: #9A9A9A;
        filter: brightness(0.8);
        border-color: transparent;
        color: #fff;
    }

.btn-info:hover, .btn-info:focus {
    background-color: #5daa04;
}

.label-primary {
    background-color: #5daa04;
}

/* body loading */
.bodyloading {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(135deg,#ff7c5e,#5daa04) center no-repeat;*/
    background: linear-gradient(135deg,#c5d93c,#5daa04);
    z-index: 99999;
}

    .bodyloading .det {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        text-align: center;
    }

.lds-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    margin-top: 10px;
    -webkit-animation: ffadeIn 0.5s forwards;
    animation: ffadeIn 0.5s forwards;
    animation-delay: .01s;
    opacity: 0;
}

    .lds-ripple div {
        position: absolute;
        border: 4px solid #fff;
        opacity: 1;
        border-radius: 50%;
        animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .lds-ripple div:nth-child(2) {
            animation-delay: -0.5s;
        }

@keyframes lds-ripple {
    0% {
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        opacity: 1;
        transform: translate(-50%,-50%);
    }

    100% {
        top: 50%;
        left: 50%;
        width: 72px;
        height: 72px;
        opacity: 0;
        transform: translate(-50%,-50%);
    }
}

.bodyloading .logo {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    margin-top: 10px;
    -webkit-animation: ffadeIn 0.5s forwards;
    animation: ffadeIn 0.5s forwards;
    animation-delay: 1s;
    opacity: 0;
}

    .bodyloading .logo div {
        width: 80px;
        height: 80px;
        background: url('../images/all/logo_loading2.png')center no-repeat;
        position: absolute;
        opacity: 1;
        animation: logo 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

@keyframes logo {
    0% {
        top: 50%;
        left: 50%;
        opacity: 1;
        transform: translate(-50%,-50%) scale(1);
    }

    50% {
        top: 50%;
        left: 50%;
        opacity: 0.6;
        transform: translate(-50%,-50%) scale(0.8);
    }

    100% {
        top: 50%;
        left: 50%;
        opacity: 1;
        transform: translate(-50%,-50%) scale(1);
    }
}

.bodyloading .icon {
    display: block;
    width: 187px;
    height: 67px;
    /* background: url('../images/all/logo_loading.png') center center no-repeat; */
    position: relative;
    -webkit-animation: fslideInDown 2s forwards;
    animation: fslideInDown 2s forwards;
    opacity: 0;
}

@-webkit-keyframes fslideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-200px);
        transform: translateY(-200px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fslideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-200px);
        -ms-transform: translateY(-200px);
        transform: translateY(-200px);
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes ffadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes ffadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/********************* Header *********************/
.header {
    position: relative;
}

body.home .header,
body.member.register .header,
body.member.forget .header,
body.member.success .header,
body.member.success2 .header {
    display: none;
}

.header .navbar-header {
    float: none;
}

/* header logo */
.header .navbar .navbar-brand {
    width: 200px;
    height: 74px;
    background: url(../images/all/logo.png) no-repeat;
    text-indent: -9999px;
    display: block;
    margin: 25px 0 23px;
    padding: 0;
    display: none;
}

    .header .navbar .navbar-brand:hover {
        opacity: 0.7;
    }


.header .navbar .title_sec a {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6em;
    text-align: center;
    letter-spacing: 2px;
    display: block;
    margin: 10px auto;
    width: 290px;
    color: #289cff;
    text-shadow: -2px 0 #fff, 0 2px #fff, 2px 0 #fff, 0 -2px #fff, 0 0 5px #000;
}

    .header .navbar .title_sec a .title_sub {
        display: block;
        font-size: 1rem;
        line-height: 1.6rem;
        /*border-top: 1px solid #fff;*/
        letter-spacing: 0;
    }
/* header 主選單 */
.header .navbar .logout {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-60%);
    padding: 9px 10px;
    margin-top: 8px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #fff;
    fill: #fff;
    font-size: 24px;
    transition: all ease 0.5s;
    filter: drop-shadow(0 0 3px rgba(0,0,0,0.5));
}

    .header .navbar .logout:hover,
    .header .navbar .logout:active,
    .header .navbar .logout:focus,
    .header .navbar .logout:hover .nav_btn_text,
    .header .navbar .logout:active .nav_btn_text,
    .header .navbar .logout:focus .nav_btn_text {
        color: #555;
        fill: #555;
        outline: none;
    }


.header .navbar .navbar-toggle {
    display: block;
    position: fixed;
    left: 20px;
    top: 10px;
    margin: 0;
    /*transform: translateY(-60%);*/
    filter: drop-shadow(0 0 3px rgba(0,0,0,0.5));
}

    .header .navbar .navbar-toggle .icon-bar {
        background: #fff;
        height: 3px;
        transition: all ease 0.5s;
    }

    .header .navbar .navbar-toggle:hover .icon-bar,
    .header .navbar .navbar-toggle:active .icon-bar,
    .header .navbar .navbar-toggle:focus .icon-bar {
        background: #beecff;
    }

    .header .navbar .navbar-toggle:hover .nav_btn_text,
    .header .navbar .navbar-toggle:active .nav_btn_text,
    .header .navbar .navbar-toggle:focus .nav_btn_text {
        color: #beecff;
    }

.header .navbar .nav_btn_text {
    display: block;
    font-size: 14px;
    color: #fff;
    transition: all ease 0.5s;
}

    .header .navbar .nav_btn_text.menu_text {
        padding-top: 4px;
        margin-left: -3px;
    }

    .header .navbar .nav_btn_text.logout_text {
        margin-top: -3px;
        margin-left: -3px;
    }


.header .navbar .navbar-nav {
    background: none;
    /*margin-top: 84px;*/
    /*margin-right: -15px;*/
    /*float: right;*/
}

    .header .navbar .navbar-nav > li > a {
        background: none;
        color: #888;
        font-weight: bold;
        border-bottom: 3px solid transparent;
        padding-top: 0px;
    }

    .header .navbar .navbar-nav li a:hover {
        color: #333;
        border-bottom-color: #52CED5;
    }

    .header .navbar .navbar-nav > li + li > a {
        border-left: 1px solid #eee;
    }

    .header .navbar .navbar-nav > li ul li a {
        padding: 5px;
    }

/*----- sidebar -----*/
.sidebar {
    width: 276px;
    position: fixed;
    top: 0;
    left: -276px;
    height: 100vh;
    z-index: 999;
    /*background: linear-gradient(135deg,#c5d93c,#99b916);*/
    background: linear-gradient(135deg,#99b916,#5daa04);
    color: #111;
    transition: all 0.3s;
    overflow-y: scroll;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
    -ms-overflow-style: none;
}

    .sidebar::-webkit-scrollbar {
        display: none;
    }

    .sidebar.active {
        left: 0;
    }

    .sidebar p {
        font-size: 1.1em;
        font-weight: 300;
        line-height: 1.7em;
        color: #111;
    }

    .sidebar a,
    .sidebar a:hover,
    .sidebar a:focus {
        color: inherit;
        text-decoration: none;
        transition: all 0.3s;
    }

    .sidebar .dismiss {
        width: 35px;
        height: 35px;
        line-height: 35px;
        text-align: center;
        background: #7386D5;
        position: absolute;
        top: 10px;
        right: 10px;
        cursor: pointer;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }

        .sidebar .dismiss:hover {
            background: #fff;
            color: #7386D5;
        }


    .sidebar .sidebar-header {
        padding: 20px;
        background: #6d7fcc;
    }

    .sidebar ul.components {
        padding: 50px 0 20px;
    }

    .sidebar ul p {
        color: #fff;
        padding: 10px;
    }

    .sidebar ul li a {
        display: block;
        padding: 13px 10px;
        text-align: center;
        font-size: 18px;
        letter-spacing: 1px;
        color: #fff;
        fill: #fff;
        font-weight: 500;
        text-shadow: 0 0 1px rgba(0,0,0,0.8);
    }

        .sidebar ul li a:hover,
        .sidebar ul li a:active,
        .sidebar ul li a:focus {
            background: #fff;
            color: #5daa04;
            fill: #5daa04;
            text-shadow: none;
        }

        .sidebar ul li a svg {
            filter: drop-shadow( 0 0 1px rgba(0,0,0,0.4));
            vertical-align: text-top;
            margin-right: 10px;
            width: 30px;
        }

        .sidebar ul li a:hover svg,
        .sidebar ul li a:active svg,
        .sidebar ul li a:focus svg {
            filter: unset;
        }


    .sidebar ul li.active > a,
    a[aria-expanded="true"] {
        background: #c3bbb0;
    }

a[data-toggle="collapse"] {
    position: relative;
}

.sidebar .dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.sidebar ul ul a {
    font-size: 16px;
    background: rgb(237, 237, 237);
}

.sidebar .dismiss {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 5px;
    color: #fff;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

    .sidebar .dismiss:hover {
        color: #5daa04;
        background: #c9fdd7;
        border-color: #5daa04;
    }

.overlay {
    top: 0;
    left: 0;
    display: block;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: all ease 0.3s;
    pointer-events: none;
}

    .overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

/* header 次選單 */
.header .navbar .sub-nav {
    position: absolute;
    right: 15px;
    top: 20px;
}

    .header .navbar .sub-nav li {
        padding: 0;
    }

        .header .navbar .sub-nav li a {
            background: url(../images/all/sub_nav.png) no-repeat;
            width: 32px;
            height: 32px;
            text-indent: -9999px;
        }

            .header .navbar .sub-nav li a:hover {
                position: relative;
                top: 2px;
            }

.header .navbar .btn-default {
    background: #52CED5;
    color: #fff;
    text-shadow: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 7px;
}

.header .navbar .lang {
    position: absolute;
    right: 54px;
    top: 20px;
}

    .header .navbar .lang .dropdown-menu {
        background: #52CED5;
        color: #fff;
        border: none;
        border-radius: 0;
    }

        .header .navbar .lang .dropdown-menu a {
            color: #fff;
        }

            .header .navbar .lang .dropdown-menu a:hover {
                background: none;
                color: #FCE617;
            }

/*------- Banner -------*/
.banner {
    position: relative;
}

    .banner .container {
        max-width: 1144px;
        background-color: #EEE;
        padding: 0;
    }

    .banner .bx-wrapper {
        margin-bottom: 0;
    }

    .banner .bxslider li {
        background-repeat: no-repeat;
        background-position: center top;
    }

        .banner .bxslider li a {
            display: block;
        }

        .banner .bxslider li img {
            width: 100%;
            display: none;
        }

    .banner .bx-wrapper .bx-viewport {
        background: none;
        border: none;
        box-shadow: none;
        left: 0;
    }

    .banner .bx-wrapper .bx-pager.bx-default-pager {
        text-align: right;
        padding: 0 15px;
        bottom: 2px;
        z-index: 60;
    }

        .banner .bx-wrapper .bx-pager.bx-default-pager a {
            background: #666;
            text-align: left;
        }

            .banner .bx-wrapper .bx-pager.bx-default-pager a.active {
                background: #1EB5BE;
            }

/********************* Footer *********************/
.footer {
    padding: 15px 0 0;
    text-align: center;
}

    /* sitemap */
    .footer .sitemap ul li {
        color: #888;
        padding: 0;
    }

        .footer .sitemap ul li a {
            color: #888;
            padding: 10px;
        }

            .footer .sitemap ul li a:hover {
                color: #5daa04;
            }

.footer_content {
    font-size: 14px;
    line-height: 1.6em;
    padding: 15px 0;
}

/* siteinfo */
.footer .siteinfo ul > li {
    padding: 0;
}

    .footer .siteinfo ul > li + li:before {
        content: "/ ";
        padding: 0 5px;
        color: #9c9c9c;
    }

.footer .siteinfo .map {
    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 .map:hover {
        position: relative;
        top: 2px;
    }

.footer .copyright {
    overflow: hidden;
    text-indent: -5000px;
}

    .footer .copyright b {
        color: #5daa04;
    }

.footer .powered a {
    color: #fff;
    text-shadow: 0 0 1px rgba(0,0,0,0.6);
}

    .footer .powered a:hover {
        color: #ddd;
    }

/********************* floating *********************/
#floating .btn-floating {
    width: 28px;
    height: 58px;
    background-color: #52CED5;
    display: none;
    margin: 1px;
    padding: 10px 3px;
    position: absolute;
    left: -30px;
}

    #floating .btn-floating .icon-arrow {
        width: 32px;
        height: 40px;
        background: url(../images/all/arrow.png) no-repeat;
        display: block;
    }

#floating.open .btn-floating .icon-arrow {
    background-position: 0 -40px;
}

#floating ul {
    background: #fff;
    background: rgba(255, 255, 255, 0.9);
}

    #floating ul li {
        padding: 10px 0;
    }

        #floating ul li + li {
            border-top: 1px solid #E7E7E7;
        }

        #floating ul li a {
            width: 56px;
            height: 60px;
            background: url(../images/all/floating_icon.png) no-repeat;
            background-position-x: 0;
            font-size: 10px;
            color: #bbb;
            text-align: center;
            display: block;
            padding: 40px 0 0;
            position: relative;
        }

        #floating ul li.b1 a {
            background-position-y: 0;
        }

        #floating ul li.b2 a {
            background-position-y: -80px;
        }

        #floating ul li.b3 a {
            background-position-y: -160px;
        }

        #floating ul li a:hover {
            color: #333;
            background-position-x: -56px;
        }


        #floating ul li a .num {
            min-width: 20px;
            height: 20px;
            background-color: #EB0F0F;
            color: #fff;
            border-radius: 50%;
            display: inline-block;
            position: absolute;
            right: 8px;
            top: 0;
        }

/* btn-box */
.content .btn-box {
    border-top: 1px solid #d3a046;
    margin: 0 auto 20px;
    padding-top: 15px;
    clear: both;
}

    .content .btn-box:after {
        content: " ";
        visibility: hidden;
        display: block;
        height: 0;
        clear: both;
    }

    .content .btn-box .pager {
        display: table;
        margin: 5px auto 20px;
    }

        .content .btn-box .pager li {
            margin: 0 5px;
        }

            .content .btn-box .pager li > a {
                background: #fff;
                color: #888;
                border-radius: 5px;
                border: 1px solid #DFDFDF;
                padding: 5px 20px;
            }

                .content .btn-box .pager li > a:hover {
                    background-color: #a9710f;
                    color: #fff;
                }

                .content .btn-box .pager li > a .icon {
                    display: none;
                }

    .content .btn-box .page-info {
        color: #888;
        font-size: 16px;
        float: right;
        text-align: center;
        margin: 0 5px;
    }

        .content .btn-box .page-info select {
            min-width: 60px;
            border: 1px solid #DFDFDF;
            margin-right: 10px;
        }

    .content .btn-box .pagination {
        margin: 0;
    }

        .content .btn-box .pagination .page-item .page-link {
            color: #000;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            line-height: 38px;
            text-align: center;
            margin: 0 5px;
            transition: all .3s ease;
            padding: 0;
        }

        .content .btn-box .pagination .page-item.active .page-link {
            background: #5daa04;
            color: #FFF;
            border-color: #ccc;
        }

/********************* Main *********************/
.main {
    z-index: 10;
    /*background: #fff;*/
    min-height: calc( 100vh - 190px);
}

body.home .main,
body.member.register .main,
body.member.forget .main,
body.member.success .main,
body.member.success2 .main {
    background: transparent;
}

.main_content {
    /*min-height: 600px;*/
    padding: 20px 0 30px;
}

    .main_content > .container {
        background: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
        border-radius: 15px;
        padding-top: 10px;
        padding-bottom: 30px;
    }

body.home .main_content > .container,
body.member.register .main_content > .container,
body.member.forget .main_content > .container,
body.member.success .main_content > .container,
body.member.success2 .main_content > .container {
    background: transparent;
    box-shadow: none;
}



/*----------------------- side -----------------------*/
.side .side-toggle {
    font-size: 15px;
    color: #23989f;
    text-align: center;
    line-height: 28px;
    margin-top: 0px;
}

.side .nav > li + li {
    border-top: 1px solid #ABCFDB;
}

.side .nav > li a {
    color: #333;
    line-height: 20px;
    display: block;
    padding: 8px 10px 8px 22px;
}

    .side .nav > li a:hover,
    .side .nav > li a:focus,
    .side .nav > li.active a {
        background: url(../images/all/list_icon.png) no-repeat 0 10px;
        color: #02b7c1;
    }

.side .nav > li > ul {
    padding-left: 20px;
    list-style-type: none;
}

    .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: 18px;
        list-style-type: none;
    }

        .side .nav > li > ul > li > ul > li > a,
        .side .nav > li > ul > li > ul > li > a:hover {
            background: url(../images/all/list_icon3.png) no-repeat 0 6px;
            padding: 6px 10px 6px 20px;
        }

/*----------------------- Content -----------------------*/
.content > h1 {
    color: #5daa04;
    font-size: 30px;
    /*border-bottom: 1px solid #ABCFDB;*/
    padding: 5px 10px 15px;
    margin-top: 0;
}

.content .editor {
    margin-bottom: 3vh;
}

.content .welcome {
    font-size: 1.25rem;
    color: #5daa04;
    line-height: 1.6rem;
    margin-left: 15px;
    margin-right: 15px;
}

.content .thank {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin: 3% 0 2%;
    color: #5daa04;
}

.content hr.type01 {
    border-color: #5daa04;
    border-style: dashed;
    margin-left: 15px;
    margin-right: 15px;
}

.content .form-group {
    margin-bottom: 25px;
}

.content .form-control {
    height: 50px;
}

    .content .form-control::-webkit-input-placeholder { /* Edge */
        color: #BFBFBF;
    }

    .content .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
        color: #BFBFBF;
    }

    .content .form-control::placeholder {
        color: #BFBFBF;
    }

.content .login .user .form-control,
.content .login .psd .form-control {
    padding-left: 40px;
}

.content .login .user:before,
.content .login .psd:before {
    font-size: 20px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 28px;
    top: 25px;
    transform: translateY(-50%);
    color: #5daa04;
}

.content .login .user:before {
    content: "\f0e0";
}

.content .login .psd:before {
    content: "\f023";
}

/*.content .login .psd .form-control.pass {
    position: relative;
}*/

.content .login .psd .btn.showpass {
    position: absolute;
    top: 13px;
    right: 25px;
    z-index: 10;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    background: transparent;
    box-shadow: none;
    color: #5daa04;
    font-size: 20px;
    margin: 0;
}

    .content .login .psd .btn.showpass .e-show {
        display: none;
    }

    .content .login .psd .btn.showpass.show .e-show {
        display: block;
    }

    .content .login .psd .btn.showpass.show .e-close {
        display: none;
    }

.content .form01 .form-group {
    margin-right: 0;
    margin-left: 0;
}

.content .form01 .form-control {
    border: 0;
    border-bottom: 2px solid #BFBFBF;
    outline: 0;
    margin-bottom: 15px;
    border-radius: 0;
}

    .content .form01 .form-control:focus {
        outline: 0;
        border-bottom: 2px solid #ABCFDB;
        box-shadow: none;
    }

    .content .form01 .form-control::-webkit-input-placeholder { /* Edge */
        color: #BFBFBF;
    }

    .content .form01 .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
        color: #BFBFBF;
    }

    .content .form01 .form-control::placeholder {
        color: #BFBFBF;
    }

.content .form01 .form-inline .form-control {
    margin-right: 15px;
    min-width: 200px;
}

.content .form01 label {
    color: #707070;
    font-weight: 400;
}


/* breadcrumb */
.content .breadcrumb {
    background: none;
    margin: 0;
    font-size: 14px;
    /*position: absolute;
    right: 10px;
    top: 10px;*/
    text-align: right;
    color: #5daa04;
}

    .content .breadcrumb a {
    }

    .content .breadcrumb > li + li:before {
        content: ">";
    }

    .content .breadcrumb > .active {
        color: #5daa04;
    }

/* btn-more */
.content .btn-more {
    position: absolute;
    right: 15px;
    top: 30px;
    display: block;
    width: 52px;
    height: 24px;
    background: url(../images/all/btn_more.png) no-repeat;
    text-indent: -9999px;
}

    .content .btn-more:hover {
        background-position: 0 -24px;
    }

/* list-box */
.content .list-box .txt-list {
    margin-bottom: 60px;
}

    .content .list-box .txt-list li {
        background: url(../images/all/icon_list.png) no-repeat 8px 12px;
        border-bottom: 1px dotted #ccc;
        padding-left: 30px;
    }

        .content .list-box .txt-list li:nth-child(2n+1) {
            background-color: rgba(240,240,240,0.3);
        }

        .content .list-box .txt-list li a {
            line-height: 28px;
            display: block;
            padding: 10px 0;
        }

            .content .list-box .txt-list li a:hover,
            .content .list-box .txt-list li a:focus {
                color: #5daa04;
            }

        .content .list-box .txt-list li span {
            font-size: 13px;
            color: #aaa;
            line-height: 20px;
            display: inline-block;
            float: right;
            padding: 3px 20px;
        }

            .content .list-box .txt-list li span.news-title {
                width: 78%;
                color: #848275;
                float: left;
            }

        .content .list-box .txt-list li.list-header {
            background: none;
            border-bottom: 1px solid #cfff98;
            padding-left: 40px;
            padding-right: 15px;
        }

            .content .list-box .txt-list li.list-header a,
            .content .list-box .txt-list li.list-header a span {
                font-size: 18px;
                color: #5daa04;
            }

                .content .list-box .txt-list li.list-header a span {
                    padding-right: 24px;
                }

/* btn-box */
.content .btn-box {
    border-top: 1px solid #cfff98;
    margin: 20px 0;
    padding-top: 15px;
    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;
    }

        .content .btn-box .pager li {
            margin: 0 5px;
        }

            .content .btn-box .pager li > a {
                background: #fff;
                color: #888;
                border-radius: 5px;
                border: 1px solid #DFDFDF;
                padding: 5px 20px;
            }

                .content .btn-box .pager li > a:hover {
                    background-color: #5daa04;
                    color: #fff;
                }

                .content .btn-box .pager li > a .icon {
                    display: none;
                }

    .content .btn-box .page-info {
        color: #888;
        float: right;
        text-align: center;
        margin: 0 5px;
    }

        .content .btn-box .page-info select {
            min-width: 60px;
            border: 1px solid #DFDFDF;
            margin-right: 10px;
        }

/*----------------------------------------- 首頁 home --------------------------------------*/
body.home .main_content {
    padding-top: 12vh;
    /*min-height: 0;*/
}

    body.home .main_content .title_sec {
        font-size: 2.5em;
        font-weight: 700;
        line-height: 1.6em;
        letter-spacing: 8px;
        color: #289cff;
        text-align: center;
        display: table;
        margin: 0 auto 30px;
        text-shadow: -3px 0 #fff, 0 3px #fff, 3px 0 #fff, 0 -3px #fff, 0 0 8px #000;
    }

        body.home .main_content .title_sec .title_sub {
            display: block;
            font-size: 1rem;
            line-height: 1.6rem;
            letter-spacing: 0;
            border-top: 1px solid #fff;
        }

    body.home .main_content .fill_sec {
        background: rgba(255,255,255,1);
        border-radius: 15px;
        padding: 60px 55px 40px;
        position: relative;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

        body.home .main_content .fill_sec:before {
            content: '';
            display: block;
            width: 339px;
            height: 425px;
            background: url(../images/all/buddha.svg) no-repeat center;
            background-size: contain;
            position: absolute;
            z-index: -1;
            left: 0;
            top: 0;
            transform: translate(-75%, -10%) rotate(-30deg);
        }

        body.home .main_content .fill_sec .login {
            margin-bottom: 40px;
        }

        body.home .main_content .fill_sec .function .form-group {
            margin-bottom: 0;
        }

body.home .content > h2 {
    font-size: 20px;
    border-bottom: 1px solid #cfff98;
    color: #5daa04;
    padding: 6px;
}

body.home .content .btn-more {
    top: 10px;
    right: 0;
}

/*----------------------------------------- wid --------------------------------------*/
.content .wid {
    position: relative;
    z-index: 10;
}
/* wid-home-news */
.content .wid-home-news {
    margin-left: 0;
}

    .content .wid-home-news .txt-list {
        margin-bottom: 10px;
        margin-top: -10px;
    }

        .content .wid-home-news .txt-list li {
            padding-left: 14px;
            background-position: 0 4px;
            background-color: transparent;
        }

            .content .wid-home-news .txt-list li:last-child {
                border-bottom: 2px solid #cfff98;
            }

            .content .wid-home-news .txt-list li a {
                padding: 2px 0;
                font-size: 13px;
            }

                .content .wid-home-news .txt-list li a span {
                    padding: 3px 0;
                    font-size: 12px;
                }

/* wid-home-product */
.content .wid-home-product .bxslider li a {
    border: 1px solid #cfff98;
    padding: 2px;
    display: block;
}

    .content .wid-home-product .bxslider li a:hover {
        border-color: #5daa04;
    }

.content .wid-home-product .bx-wrapper .bx-controls-direction a {
    width: 24px;
    height: 40px;
    background: url(../images/home/arrow.png) no-repeat;
}

    .content .wid-home-product .bx-wrapper .bx-controls-direction a.bx-prev {
        left: -24px;
    }

    .content .wid-home-product .bx-wrapper .bx-controls-direction a.bx-next {
        right: -24px;
        background-position: 0 -40px;
    }

/* wid-home-contact */
.content .wid-home-contact ul li {
    color: #717171;
    padding-left: 20px;
    font-size: 12px;
    line-height: 1.8;
}

    .content .wid-home-contact ul li.phone {
        font-size: 22px;
        color: #333;
        font-weight: bold;
    }

/*----------------------------------------- 會員 member --------------------------------------*/
body.member.success .main_content,
body.member.success2 .main_content {
    padding-top: 12vh;
}

body.member .main_content .title_sec {
    font-size: 2.5em;
    font-weight: 700;
    line-height: 1.6em;
    letter-spacing: 8px;
    text-align: center;
    display: table;
    margin: 0 auto 30px;
    color: #289cff;
    text-shadow: -3px 0 #fff, 0 3px #fff, 3px 0 #fff, 0 -3px #fff, 0 0 8px #000;
}

    body.member .main_content .title_sec .title_sub {
        display: block;
        font-size: 1rem;
        line-height: 1.6rem;
        letter-spacing: 0;
        border-top: 1px solid #fff;
    }

body.member .main_content .fill_sec {
    background: rgba(255,255,255,1);
    border-radius: 15px;
    padding: 60px 55px 40px;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

body.member.success .main_content .fill_sec,
body.member.success2 .main_content .fill_sec {
    padding: 55px 55px 15px;
}

body.member .main_content .notice {
    color: red;
}

body.member .main_content .nav-func {
    display: block;
    /*margin-top: 5%;*/
    margin-bottom: 3%;
}

    body.member .main_content .nav-func li {
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 15px;
    }

        body.member .main_content .nav-func li a {
            /*border: 1px solid #5daa04;*/
            display: flex;
            align-items: center;
            /*background-image: linear-gradient(135deg, #ff7c5e, #5daa04);*/
            background: linear-gradient(135deg,#c5d93c,#99b916);
            padding: 20px 15px 20px 30px;
            font-size: 1.875rem;
            color: #fff;
            line-height: 1.6rem;
            border-radius: 10px;
            opacity: 1;
            transition: all ease 0.5s;
            box-shadow: 0 0 5px rgba(0,0,0,0.3);
        }

            body.member .main_content .nav-func li a .icon {
                width: 45%;
                padding-left: 5px;
                padding-right: 5px;
            }

            body.member .main_content .nav-func li a .des {
                width: 55%;
                padding-left: 5px;
                padding-right: 5px;
            }

                body.member .main_content .nav-func li a .des .txt-en {
                    display: block;
                    font-size: 50%;
                    margin-top: 10px;
                }

            body.member .main_content .nav-func li a:hover,
            body.member .main_content .nav-func li a:active,
            body.member .main_content .nav-func li a:focus {
                filter: brightness(1.05);
                box-shadow: 0 0 10px rgba(0,0,0,0.6);
            }

@media (max-width: 576px) {
    .home-nav h3 {
        margin-top: 0;
    }

    body.member .main_content .nav-func {
        padding-left: 5px;
        padding-right: 5px;
        margin-left: 0;
    }

        body.member .main_content .nav-func li {
            padding-left: 5px;
            padding-right: 5px;
        }

            body.member .main_content .nav-func li a {
                display: block;
                padding: 10px !important;
                text-align: center;
                ;
            }

                body.member .main_content .nav-func li a .icon {
                    width: 40% !important;
                    margin: 0 auto 10px auto !important;
                }

                body.member .main_content .nav-func li a .des {
                    width: auto;
                    font-size: 1.4rem;
                }

                    body.member .main_content .nav-func li a .des .txt-en {
                        display: none;
                    }
}
/*----------------------------------------- 影片 video --------------------------------------*/
body.video .main_content h3 {
    margin-left: 15px;
    margin-right: 15px;
}

body.video .main_content .video_info,
body.video .main_content .video_detail {
    padding: 5px 10px;
    background: #eee;
}

    body.video .main_content .video_info ul,
    body.video .main_content .video_detail ul {
        margin-bottom: 0;
    }

body.video .main_content .video_detail {
    margin-top: 10px;
    margin-bottom: 25px;
}

body.video .main_content .video_slick {
    margin: 0 15px;
}

    body.video .main_content .video_slick > div {
        padding: 5px 0;
    }

body.video .main_content .video_item {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    /*border: 1px solid #5257DB;*/
    opacity: 1;
    transition: all ease 0.5s;
    font-size: 1rem;
    margin-bottom: 5px;
    cursor: pointer;
}

    body.video .main_content .video_item .pic {
        width: 40%;
    }

    body.video .main_content .video_item .des {
        width: 60%;
        background: linear-gradient(135deg,#c5d93c,#99b916);
        padding: 10px 15px;
        text-shadow: 0 0 1px rgba(0,0,0,0.6);
    }

        body.video .main_content .video_item .des h4 {
            color: #fff;
            text-shadow: 0 0 2px #000;
            /* margin:0; */
        }

        body.video .main_content .video_item .des p {
            color: #fff;
            margin: 0;
        }

        body.video .main_content .video_item .des .time {
            color: #fff;
            font-size: 0.87rem;
            margin-bottom: 0;
        }


    body.video .main_content .video_item:hover,
    body.video .main_content .video_item:active,
    body.video .main_content .video_item:focus {
        opacity: 0.8;
        box-shadow: 0 0 10px rgba(0,0,0,0.5);
        transform: scale(1.05);
    }

body.video.show .main_content .video_slick h3 {
}

body.video.show .main_content .video_item {
    margin-bottom: 0;
    margin-left: 5px;
    margin-right: 5px;
}

    body.video.show .main_content .video_item:hover,
    body.video.show .main_content .video_item:active,
    body.video.show .main_content .video_item:focus {
        transform: scale(1);
    }

@media (max-width: 576px) {
    body.video .main_content .video_item {
        display: block;
    }

    body.video.p01 .main_content .video_item .pic {
        width: 100%;
    }

    body.video.show .main_content .video_item .pic {
        display: none;
    }

    body.video .main_content .video_item .des {
        width: auto;
    }

        body.video .main_content .video_item .des h4 {
            /* min-height: 2rem; */
        }
}

body.video.show .main_content .detail {
    float: right;
    margin-right: 12px;
    color: #808080;
}

    body.video.show .main_content .detail label {
        color: #ff7c5e;
        font-weight: 400;
    }

body.video.show .main_content .slick-prev:before,
body.video.show .main_content .slick-next:before {
    font-size: 25px;
    color: #5257db;
}

body.video.show .main_content .editor {
    margin-bottom: 15px;
    padding: 0 15px;
}

/*----------------------------------------- 測驗 test --------------------------------------*/

body.test .main_content .q_t01 {
    display: inline-block;
    background: #5daa04;
    color: #fff;
    padding: 5px 12px 5px 15px;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 1.125rem;
    margin-top: 0.8rem;
}

body.test .main_content .q_t02 {
    font-size: 1.125rem;
    color: #5daa04;
}

body.test .main_content .q_des {
    padding: 15px 20px;
    border: 1px solid #5daa04;
    border-radius: 10px;
}

body.test .main_content .q_question {
    padding-left: 30px;
    margin-bottom: 2%;
    margin-top: 1%;
}

    body.test .main_content .q_question li {
        color: #5daa04;
        padding-bottom: 10px;
        border-bottom: 1px solid #c9fdd7;
    }

        body.test .main_content .q_question li .radio-inline {
            margin-right: 15px;
            padding-left: 30px;
        }

            body.test .main_content .q_question li .radio-inline input {
                width: 1em;
                height: 1em;
                margin-left: -25px;
            }

            body.test .main_content .q_question li .radio-inline label {
                font-weight: 400;
                color: #000;
            }

body.test .main_content .score {
    padding: 70px 15px 20px;
    background: linear-gradient(135deg,#c5d93c,#99b916);
    border-radius: 15px;
    text-align: center;
    color: #fff;
    font-size: 12rem;
    font-weight: 700;
}

    body.test .main_content .score p {
        line-height: 0.5em;
        margin-bottom: 0;
    }

body.test .main_content .max {
    font-size: 2.5rem;
    font-weight: 400;
}

    body.test .main_content .max::before {
        content: '/';
        margin: 0 10px;
        font-size: 0.6em;
    }

body.test .main_content .score-list {
    margin-top: 20px;
    margin-bottom: 30px;
}

    body.test .main_content .score-list li {
        font-size: 1.125rem;
        margin: 10px 0;
    }


body .main_content .table01 {
    border: 1px solid #78d1c3;
    border-radius: 10px;
    border-collapse: separate;
    overflow: hidden;
}

    body .main_content .table01 thead {
        background: #ff7c5e;
        color: #fff;
    }

        body .main_content .table01 thead tr th {
            padding: 15px 20px;
        }

            body .main_content .table01 thead tr th:last-of-type {
                text-align: center;
            }

    body .main_content .table01 tbody tr td {
        padding: 15px 20px;
        vertical-align: middle;
    }

        body .main_content .table01 tbody tr td:last-of-type {
            text-align: center;
        }

.content .table01 > tbody > tr > td .tn {
    display: none;
}

body .main_content .table02 {
    border: 1px solid #78d1c3;
    border-radius: 10px;
    background: #ff7c5e;
    overflow: hidden;
    margin: 30px 15px;
}

    body .main_content .table02 dt {
        padding: 30px 15px;
        text-align: center;
        color: #fff;
        font-weight: 500;
        width: 180px;
    }

    body .main_content .table02 dd {
        background: #fff;
        padding: 30px 15px;
    }

        body .main_content .table02 dd:before,
        body .main_content .table02 dd:after {
            display: none;
        }

    body .main_content .table02 dt,
    body .main_content .table02 dd {
        border-top: 1px solid #78d1c3;
    }

        body .main_content .table02 dt:first-of-type,
        body .main_content .table02 dd:first-of-type {
            border-top: none;
        }
