*, *:focus {
	outline: none;
}

html, body {
    height: 100%;
    min-height: 100%;
	margin: 0px auto;
	padding: 0;
    /* font-family: 'Microsoft JhengHei'; */
	font-family: 'Noto Sans TC', 'Microsoft JhengHei';
    /* font-family: arial; */
    text-align: left;
    color: #303030;
    background: #fff;
	cursor: default;
}

a {
	margin: 0px;
	padding: 0px;
	text-decoration: none;
    color: #008aff;
	outline: 0;
    word-break: break-all;
}

img {
	border: 0px;
}

.clear {
	height: 0px;
	margin: 0px;
	padding: 0px;
	clear: both;
}

.noBorder {
    border: none !important;
}

#web {
    height: 100%;
    min-height: 100%;
}

@media screen and (min-width: 1px) and (max-width: 767px) {
    .txtBreak {
        display: block;
    }
    
    .txtMerge {
        display: inline;
    }
}

/*---------- header (start) ----------*/
header {
    width: 100%;
    height: 100px;
    padding: 0 0 60px;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    /* background: rgba(255, 255, 255, 0.5); */
}

header .headerBack {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #000;
    opacity: 0;
}

header .headerCont {
    width: 90%;
    margin: 0 auto;
    position: relative;
}

header .logo {
    position: absolute;
    top: 30px;
    z-index: 999;
}

header .logo img {
    width: 300px;
}

@media screen and (min-width: 1201px) and (max-width: 1366px) {
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
    header .headerCont {
        width: 100%;
    }

    header .logo {
        left: 15px;
        top: 15px;
    }

    header .logo img {
        width: 200px;
    }    
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    header .headerCont {
        width: 100%;
    }

    header .logo {
        left: 15px;
        top: 15px;
    }

    header .logo img {
        width: 200px;
    }    
}

@media screen and (min-width: 1px) and (max-width: 767px) {
    header {
        height: 60px;
    }

    header .headerCont {
        width: 100%;
    }

    header .logo {
        left: 10px;
        top: 18px;
    }
    
    header .logo img {
        width: 150px;
    }
}
/*---------- header (end) ----------*/

/*---------- header nav top (start) ----------*/
#navTop {
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 999;
}

#navTop a {
    color: #303030;
    cursor: pointer;
}

#navTop .divLine {
    padding: 0 7px;
    display: inline-block;
    color: #505050;
    transform: scaleX(0.5) translateY(-1px);
}

@media screen and (min-width: 1367px) and (max-width: 1600px) {
    #navTop {
        right: 15px;
        font-size: 14px;
    }
}

@media screen and (min-width: 1201px) and (max-width: 1366px) {
    #navTop {
        right: 15px;
        font-size: 13px;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
    #navTop {
        display: none;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    #navTop {
        display: none;
    }
}

@media screen and (min-width: 1px) and (max-width: 767px) {
    #navTop {
        display: none;
    }
}
/*---------- header nav top (end) ----------*/

/*---------- header nav (start) ----------*/
#nav {
    /* width: 100%; */
    margin: 1px 0 0;
    padding: 0;
    position: absolute;
    right: 0;
    top: 60px;
    z-index: 999;
    text-align: center;
    font-size: 20px;
    /* background: #f8f8f8; */
}

#nav .divLine {
    display: inline-block;
    color: #a3f080;
    transform: scaleX(1.5) translateY(-12px);
}

#nav ul {
    /* width: 1200px; */
    margin: 0 auto;
    display: inline-block;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}

#nav ul li {
    margin: 0;
    float: left;
    position: relative; /*寬版:static, 窄版:relative*/
}

#nav ul .navFullW {
    position: static; /*寬版:static, 窄版:relative*/
}

#nav ul li .navTit {
    padding: 5px 20px;
    display: block;
    color: #000;
    /* background: #e8e8e8; */
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    /* transition: color 0.2s, text-shadow 0.2s; */
}

#nav ul:nth-child(5) li .navTit {
    cursor: default;
}

#nav ul li .navTit:hover {
    /* color: #a3f080; */
    /* text-shadow: 0 0 3px rgba(0, 0, 0, 0.2); */
}

#nav ul li ul {
    width: 100%;
    visibility: hidden;
    position: absolute;
    left: 0;
    border-top: #a3f080 3px solid;
    box-shadow: 0px 0px 10px #c0c0c0;
}

#nav ul li:hover > ul {
    /* display: inline-block; */
    visibility: visible;
    /* background: #e8e8e8; */
}

#nav ul li ul li {
    width: 100%;
    padding: 12px 0;
    position: relative;
    font-size: 15px;
    color: #303030;
    background: rgba(255, 255, 255, 0.95);
}

#nav ul li ul li ul {
    visibility: hidden;
    position: absolute;
    left: 100%;
    top: -3px;
    z-index: 999;
    border-top: #b00000 3px solid;
}

#nav ul li ul a {
    cursor: pointer;
}

#nav ul li ul a li:hover {
    color: #a3f080;
    background: #fff;
}

@media screen and (min-width: 1367px) and (max-width: 1600px) {
    #nav {
        font-size: 18px;
    }

    #nav ul li .navTit {
        padding: 5px 15px;
    }
}

@media screen and (min-width: 1201px) and (max-width: 1366px) {
    #nav {
        font-size: 16px;
    }

    #nav ul li .navTit {
        padding: 5px 15px;
    }

    #nav ul li ul li {
        font-size: 13px;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
    #nav {
        display: none;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    #nav {
        display: none;
    }
}

@media screen and (min-width: 1px) and (max-width: 767px) {
    #nav {
        display: none;
    }
}
/*---------- header nav (end) ----------*/

/*---------- header phone nav (start) ----------*/
#navPhone {
    width: 100%;
    height: 60px;
    display: none;
    position: absolute;
    left: 0px;
    top: 0;
    z-index: 998;
    background-color: rgba(255, 255, 255, 0);
    transition: background-color 0.5s;
}

#navPhone.navBackAni {
    background-color: rgba(255, 255, 255, 1);
}

#navPhone .hamburger {
    width: 30px;
    height: 30px;    
    display: inline-block;
    position: absolute;
    top: 15px;
    right: 0px;
    color: #8ff366;
    cursor: pointer;
}

#navPhone .hamburger .hamburOpen {
    margin: 0 0 0 -14px;
    padding: 0;
    position: absolute;
    font-size: 32px;
    transform-origin: center;
}

#navPhone .hamburger .hamburClose {
    margin: -2px 0 0 -14px;
    padding: 0;
    position: absolute;
    font-size: 36px;
    opacity: 0;
    transform-origin: center;
}

#navPhone .hamburger .hamburOpenAni {
    animation: hamburOpen 0.3s ease-in-out 0.0s 1 alternate forwards;
}

#navPhone .hamburger .hamburCloseAni {
    animation: hamburClose 0.3s ease-in-out 0.0s 1 alternate forwards;
}

@keyframes hamburOpen {    
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(180deg);
    }
}

@keyframes hamburClose {    
    0%{
        transform: rotate(180deg);
    }
    100%{
        transform: rotate(0deg);
    }
}

#navPhone #phoneMenu {
	width: 100%;
    box-sizing: border-box;
    display: none;
	position: absolute;
    left: 0;    
	z-index: 8;
    overflow: auto;
	background: #f8f8f8;
}

#navPhone #phoneMenu #phoneAccordionMenu {
    padding: 15px 0 0;
}

#navPhone #phoneMenu #phoneAccordionMenu h3 {
    width: 90%;
    margin: auto;
    padding: 15px;
    box-sizing: border-box;
    border-bottom: solid 0.5px #a3f080;
    text-align: center;
    font-weight: 400;
    font-size: 20px;
    color: #303030;
    outline: none;
    /* background: #f00; */
}    

#navPhone #phoneMenu #phoneAccordionMenu div a div {
    padding: 15px 0;
    text-align: center;
    font-size: 18px;
    color: #808080;
}

#navPhone #phoneMenu #phoneAccordionMenu .subMenu {        
    padding: 15px 0 10px;
    border-bottom: dotted 1px #808080;
}

#navPhone #phoneMenu #phoneAccordionMenu .subMenu > .title {
    padding: 10px 0;
    font-size: 18px;
    color: #808080;
}

#navPhone #phoneMenu #phoneAccordionMenu .subMenu > .title > a {
    width: 100%;
    float: none;
}

#navPhone #phoneMenu #phoneAccordionMenu .subMenu a {
    width: 50%;
    min-height: 60px;
    float: left;
    color: #808080;
}

#navPhone #phoneMenu #phoneAccordionMenu .subMenu a div {
    padding: 10px 0;
    font-size: 14px;
}

#navPhone #phoneMenu .fn {
    padding: 20px;
    box-sizing: border-box;
}

#navPhone #phoneMenu .fn .fnItem {
    padding: 12px 0;
    box-sizing: border-box;
    text-align: center;
}

#navPhone #phoneMenu .fn .fnItem a {
    font-weight: 300;
    color: #808080;
}

#navPhone #phoneMenu .fn .fnItem .divLine {
    padding: 0 30px;
    display: inline-block;
    color: rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

#navPhone #phoneMenu .fn .fnItem .csrcLogo {
    width: 60px;
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
    #navPhone {
        display: block;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    #navPhone {
        display: block;
    }
}

@media screen and (min-width: 1px) and (max-width: 767px) {
    #navPhone {
        display: block;
    }
}
/*---------- header phone nav (end) ----------*/

/*---------- article (start) ----------*/
article {    
    min-height: 100%;
    /* margin: -100px 0 -630px; */
    /* padding: 100px 0 630px; */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

article section {
    width: 100%;
    min-height: 100px;
    position: relative;
    overflow: hidden;
}

article section .ctx {
    width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
    box-sizing: border-box;
    position: relative;
    vertical-align: bottom;
}

article section .ctxFullW {
    width: 100% !important;
}

article section .ctx .caption {
    letter-spacing: 0.5px;
    font-weight: bold;
    font-size: 20px;
}

article section .ctx .caption .icon {
    width: 40px;
    margin: 0 10px 0 0;
    vertical-align: bottom;
    transform: translateY(-3px)
}

article section .ctx .contOver {
    width: 100%;
    display: inline-block;
    overflow-x: auto;
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
    article section .ctx {
        width: 100%;
        padding: 40px;
    }    
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    article {
        min-height: 100%;
        margin: -60px 0 -30px;
        padding: 60px 0 30px;
        box-sizing: border-box;
    }

    article section .ctx {
        width: 100%;
        padding: 40px;
    }
}

@media screen and (min-width: 1px) and (max-width: 767px) {
    article {
        min-height: 100%;
        margin: -60px 0 -60px;
        padding: 60px 0 60px;
        box-sizing: border-box;
    }

    article section .ctx {
        width: 100%;
        padding: 40px 20px;
    }
}
/*---------- article (start) ----------*/

/*---------- contact (start) ----------*/
.contact {
	background: #a3f080;
}

.contact .contactCont {
	width: 1200px;
	margin: auto;
    padding: 40px 0;
    box-sizing: border-box;
}

.contact .contactCont .qrcode {
    padding: 40px 0;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
}

.contact .contactCont .qrcode .item {
    flex: 0 1 33.3%;
    padding: 0 20px 0 0;
    box-sizing: border-box;
}

.contact .contactCont .qrcode .item a {
    color: #303030;
}

.contact .contactCont .qrcode .item .codeImg {
    width: 150px;
    margin: 0 0 5px -2px;
}

.contact .contactCont .qrcode .item .lineIcon {
    margin: -2px 0 0;
    vertical-align: top;
    font-size: 28px;
    color: #00cc00;
}

.contact .contactCont .qrcode .item .fbIcon {
    margin: -2px 0 0;
    vertical-align: top;
    font-size: 28px;
    color: #004488;
}

.contact .contactCont .qrcode .item .joinBtn {
    width: 145px;
    height: 145px;
    display: inline-block;
    position: relative;
    border-radius: 15px;
    background: #00cc00;
}

.contact .contactCont .qrcode .item .joinBtn .txt {
    width: 100%;
    margin: auto;
    position: absolute;
    top: 50%;
    text-align: center;
    font-size: 20px;
    color: #fff;
    transform: translateY(-50%);
}

.contact .contactCont .info {
    padding: 40px 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    border-top: dotted 1px rgba(255, 255, 255, 0.5);
}

.contact .contactCont .info .item {
    flex: 0 1 33.3%;
    padding: 0 20px 0 0;
    box-sizing: border-box;
}

.contact .contactCont .info .item .tit {
    font-weight: bold;
}

.contact .contactCont .logo {
    padding: 40px 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    border-top: dotted 1px rgba(255, 255, 255, 0.5);
}

.contact .contactCont .logo .item {
    flex: 0 1 33.3%;
    padding: 0 20px 0 0;
    box-sizing: border-box;
    align-self: center;
}

.contact .contactCont .logo .item .logoNHOA {
    height: 70px;
    vertical-align: bottom;
}

.contact .contactCont .logo .item .logoTCC {
    height: 100px;
    vertical-align: bottom;
}

@media screen and (min-width: 1201px) and (max-width: 1366px) {
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
    .contact .contactCont {
        width: 100%;
        padding: 60px 40px 0;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .contact .contactCont {
        width: 100%;
        padding: 60px 40px 0;
    }

    .contact .contactCont .logo .item .logoNHOA {
        height: 50px;
    }
    
    .contact .contactCont .logo .item .logoTCC {
        height: 70px;
    }
}

@media screen and (min-width: 1px) and (max-width: 767px) {
    .contact .contactCont {
        width: 100%;
        margin: auto;
        padding: 20px 20px 0;
    }

    .contact .contactCont .qrcode .item {
        flex: 0 1 100%;
        padding: 20px 0;
    }

    .contact .contactCont .info .item {
        flex: 0 1 100%;
        padding: 20px 0;
    }

    .contact .contactCont .logo .item {
        flex: 0 1 100%;
        padding: 20px 0;
    }
}
/*---------- contact (end) ----------*/

/*---------- footer (start) ----------*/
footer .footerCont {
	width: 1200px;
	height: 70px;
	margin: auto;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    font-size: 14px;
}

footer .footerCont .left {
    height: 100%;
    flex: 0 1 50%;
    padding: 25px 100px 25px 0;
    box-sizing: border-box;
    border-right: solid 1px #505050;
}

footer .footerCont .left .copyright {
    letter-spacing: 1px;
}

footer .footerCont .right {
    height: 100%;
    flex: 0 1 50%;
    padding: 25px 0 25px 100px;
    box-sizing: border-box;
    border-left: solid 1px #505050;
    text-align: right;
}

footer .footerCont .right .privacy {
    border-bottom: solid 1px #303030;
}

footer .footerCont .gapLine {
    padding: 0 10px;
}

footer .footerCont a {
    color: #303030;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    /* #footer .content .copyright {
        transform: scale(0.9);
    } */
}

@media screen and (min-width: 1201px) and (max-width: 1366px) {
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
    footer .footerCont {
        width: 100%;
        height: 80px;
        padding: 0 40px;
    }

    footer .footerCont .left {
        padding: 20px 100px 20px 0;
    }

    footer .footerCont .right {
        padding: 20px 0 20px 100px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    footer .footerCont {
        width: 100%;
        height: 80px;
        padding: 0 40px;
    }

    footer .footerCont .left {
        padding: 20px 40px 20px 0;
    }

    footer .footerCont .right {
        padding: 20px 0 20px 40px;
    }
}

@media screen and (min-width: 1px) and (max-width: 767px) {
    footer .footerCont {
        width: 100%;
        height: 70px;
        font-size: 12px;
        background: #ccc;
    }

    footer .footerCont .left {
        height: 50%;
        flex: 0 1 100%;
        padding: 10px 20px 0;
        border-right: none;
        text-align: center;
    }

    footer .footerCont .left .copyright {
        letter-spacing: 0.5px;
    }
    
    footer .footerCont .right {
        height: 50%;
        flex: 0 1 100%;
        padding: 0px 20px 10px;
        border-left: none;
        text-align: center;
    }
}
/*---------- footer (end) ----------*/

/*---------- Goto Button (Start) ----------*/
.goTop {
    width: 50px;
    box-sizing: border-box;
    display: inline-block;
    position: fixed;
    right: 100px;
	bottom: 160px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.5s;
}

.goTopHide {
    opacity: 1;
}

.goTop img {
    width: 100%;
}

@media screen and (min-width: 1367px) and (max-width: 1600px) {
    .goTop {
        right: 80px;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1366px) {
    .goTop {
        width: 40px;
        right: 20px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .goTop {
        width: 40px;
        right: 20px;
        bottom: 90px;
    }
}

@media screen and (min-width: 1px) and (max-width: 767px) {
    .goTop {
        width: 40px;
        padding: 10px 10px 5px;
        right: 10px;
        bottom: 50px;
        border-radius: 10px;
        background: rgba(128, 128, 128, 0.2);
    }
}
/*---------- Goto Button (End) ----------*/