﻿@charset "UTF-8";
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
*:focus {
        outline: none;
    }
a, a:link, a:visited, a:hover, a:active {
    text-decoration: none;
}
img {
    border: 0px none;
}
body {
    position: relative; /* 不可以absolute 資料下方會被截斷 */
    width: 100%;
    height: 100vh;
    color: #000000;
    font-size: 1rem;
    line-height: 2rem;
    margin: 0;
    padding: 0;
    font-family: 'Microsoft Yahei', 'Microsoft JhengHei', Verdana, Helvetica, Arial, 'HeitiTC', 'Microsoft YaHei', sans-serif;
}
/* *******************
    Header
******************* */
header {
    position: fixed;
    width: 100%;
    z-index: 5;
    top: 0;
    /* height: 65px; */
    background-color: rgba(0,0,0,0);
    box-shadow: 0 1px 10px rgba(0,0,0,0);
    display: inline-block;
    float: left;
    overflow: hidden;
}
    header h1 {
        color: #696969;
        padding: 13px;
        font-weight: 200;
    }
.h_logo {
    position: relative;
    display: inline-block;
    float: left;
    text-align: left;
    padding: 7px;
    margin-right: 90px;
}
    .h_logo img {
        width: auto;
        height: 40px;
    }
.l_logo {
    position: relative;
    display: inline-block;
    float: left;
    text-align: left;
    padding: 7px;
    margin-right: 90px;
}
    .l_logo img {
        width: auto;
        height: 10vw;
    }

/* 右上角摺疊登出鈕 */
.infoFoldBtn {
    position: fixed;
    width: 45px;
    height: 45px;
    border-radius: 50px;
    background-color: #f1f1f1;
    top: 12px;
    right: 18px;
    z-index: 99;
    overflow: hidden;
}
.infoFoldBtn img {
    position: absolute;
    top: 3px;
    left: 0px;
    width: 45px;
    height: 45px;
}
.infoFoldBtn:hover {
    background-color: #dadada;
    cursor: pointer;
}
.infoFoldPop {
    position: fixed;
    top: 66px;
    right: 16px;
    width: 300px;
    box-shadow: 3px 3px 5px #5e5e5e;
    border: 2px solid #cbcbcb;
    border-radius: 5px;
    z-index: 99;
    display: none;
    padding: 15px 0;
    user-select: none;
    overflow: hidden;
    background-color: #f5f5f5;
}
.infoFoldPop::before {
    content: "";
    position: absolute;
    background-color: #f8f1e8;
    width: 500px;
    height: 500px;
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: -1;
}
.infoFoldPop::before {
    top: -390px;
    left: -400px;
    box-shadow: 2px 2px 2px #c6c6c6;
}
.infoFoldContent {
    font-size: 18px;
    color: #444444;
    padding-bottom: 10px;
    text-align: center;
}
.infoFoldContentInput {
    text-align: center;
}
.infoFoldContentInput div {
    letter-spacing: 1px;
}
.infoFoldContentInput > div > input {
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 3px;
    margin-bottom: 8px;
    font-size: 16px;
    width: 70%;
    border: 1px solid #409bc7;
    border-radius: 5px;
}
    .infoFoldContentInput > input[type=submit] {
    color: #444444;
    font-size: 16px;
    padding: 10px 25px;
    background-color: #d6edf7;
    background-image: linear-gradient(to bottom,#ddf2fb,#a3ccdc);
    border: 1px solid #6c97b2;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10px;
    width: 70%;
    box-shadow: 3px 3px 3px #ababab;
}
.infoFoldContentInput > input[type=submit]:hover {
    background-color: #a6cdde;
    background-image: linear-gradient(to bottom,#bbdae6,#80bad2);
}

.openIdSubmit {
    position: relative;
    display: inline-block;
    font-size: 16px;
    padding: 6px 25px;
    background-color: #d6edf7;
    background-image: linear-gradient(to bottom,#ddf2fb,#a3ccdc);
    border: 1px solid #6c97b2;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10px;
    width: 70%;
    box-shadow: 3px 3px 3px #ababab;
}
.openIdSubmit:hover {
    background-color: #a6cdde;
    background-image: linear-gradient(to bottom,#bbdae6,#80bad2);
}
.openIdSubmit img {
    position: absolute;
    width: 32px;
    height: 32px;
    top: 50%;
    left: 52px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.openIdSubmit span {
    padding-left: 42px;
    color: #444444;
}
    

/* 塞入class Name */
.displayBlock {
    display: block;
}
/* 當RWD打開時，背景灰底 */
.bgNonClick {
    background-color: rgba(0,0,0,0.6);
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 2;
}
/* 當登出收合鈕打開時，背景透明但可以按，讓它可以因為點擊他處而收起 */
.bgNonClick_transparent {
    background-color: rgba(0,0,0,0);
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 10;
}
.logInTxt {
    position: fixed;
    top: 10px;
    right: 54px;
    color: #696969;
    font-size: 20px;
    z-index: 99;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 20px;
    padding-left: 10px;
}
.vcenter {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.slg {
    color: #696969;
    font-size: 18px;
    letter-spacing: 2px;
}
.slg div {
    float: left;
    clear: both;
    width: 100%;
}
.LoginVerification {
    position: relative;
}
.LoginVeriNum {
    overflow: hidden;
    position: relative;
    width: 70%;
    margin-left: 15%;
    margin-bottom: 24px;
}
.LoginVeriNum input {
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 3px;
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 16px;
    width: 100%;
    border: 1px solid #409bc7;
    border-radius: 5px;
    float: left;
}
.LoginVeriNum div {
    clear: both;
    float: left;
    border: 1px solid gray;
    border-radius: 5px;
    margin-bottom: 10px;
    width: 84%;
    height: 46px;
}
.LoginVeriNum img {
    position: absolute;
    bottom: 12px;
    right: 8px;
    width: 20px;
}
.LoginVeriNum img:hover {
    cursor: pointer;
}
.LoginVeriNumErr {
    color: red;
    font-size: 14px;
    position: absolute;
    left: 50%;
    bottom: -36px;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.hrDiv {
    width: 84%;
    height: 1px;
    background-color: gray;
    margin-left: 8%;
    margin-top: 6px;
}


.fadeBannerPic1 {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.fadeBannerPic1 {
    background-image: url(../images/bg/bg.png);
    animation-name: fadeBannerPic1;
    animation-duration: 20s;
    animation-iteration-count: infinite;
}


@media screen and (max-width: 780px) {
    /* 使手機版可以捲動輸入框 */
    .infoFoldPop {
        position: absolute;
    }

    .slg2 {
        clear: both;
        float: left;
    }
}
@media screen and (max-device-width: 780px) {
    /* 使手機版可以捲動輸入框 */
    .infoFoldPop {
        position: absolute;
    }

    .slg2 {
        clear: both;
        float: left;
    }
    
}
.loginCenterBg {
    background: rgba(255,255,255,0.4);
    /*width: 40%;*/
    min-width: 679px;
    max-width: 50%;
    height: 60%;
    margin: 0 auto;
    /*padding: 40px 0px 40px 0px;*/
    padding: 10px 0px 0px 0px;
    border-radius: 10px;
    overflow: auto;
    /*min-width: 330px;*/
}
.Login_Bk
{    
    /*background-image:url(../bkimg/login_backc.png);*/ 
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -10;
    background-position: center 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    -webkit-background-size: cover;
    -o-background-size: cover;
    zoom: 1; 
    /*opacity:1;*/
    transition: opacity 1s linear;
    -moz-transition: opacity 1s linear;
    -webkit-transition: opacity 1s linear;
    -o-transition: opacity 1s linear;
}
footer {
 position: relative;
 margin-top: -180px; /* negative value of footer height */
    height: 180px;
    clear: both;
}
.latest_news{
    padding-left: 32px;
    font-size: 20px;
    color: gray;
}
@media screen and (max-width: 780px) {
    /* 使手機版外部公告縮小 */
    .loginCenterBg {
        min-width: 90vw;
    }
}

/*上下一筆*/
.bullButton{
    border-radius: 5px;
    padding: 0px 5px;
    background-color: white;
    margin: 0px 2px;
    letter-spacing: 1px;
    min-width: 53px;
    border: 1px solid gray;
    box-shadow: 2px 2px 3px #a2a2a2;
}
.bullButton:hover {
    cursor: pointer;
    background-color: rgb(187, 224, 234);
    box-shadow: none;
}
.qa_title:hover {
    background: #dedede;
}


/*忘記密碼*/
.loginSetContentInput > div > div > input[type=text],.loginSetContentInput > div > div > input[type=password] {
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 3px;
    margin-bottom: 8px;
    font-size: 16px;
    margin-left: 4px;
    border: 1px solid #409bc7;
    border-radius: 5px;
}

.loginSetContentInput > div > div > input[type=submit] {
    color: #444444;
    font-size: 16px;
    padding: 5px 10px;
    background-color: #d6edf7;
    background-image: linear-gradient(to bottom,#ddf2fb,#a3ccdc);
    border: 1px solid #6c97b2;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
    box-shadow: 3px 3px 3px #ababab;
}
.loginSetContentInput > div > div > input[type=submit]:hover {
    background-color: #a6cdde;
    background-image: linear-gradient(to bottom,#bbdae6,#80bad2);
}