﻿@charset "utf-8";
/*CSS Info ======================================================================
File Name: global.css
Editor: Sophia
Last Editor: Sophia
CreateDate:2010/11/26
LastDate: 2018/8/20
Version: 3.2
---------------------------
【 Table of Contents 】
	DIV XHTML頁面
	Free Style
	使用jQuery
	
	內容置中，100%寬度
    Responsive Design
	*--》超大螢幕：目標1440螢幕，內容1360，新的 base grid                           (1380 以上)
	*--》普通寬螢幕：目標1280螢幕，內容1200                                                     (1220～1379)
    *--》Smaller than 960: Smaller than the standard base grid，目標1024   (977～1219)
    *--》Tablet Portrait 752: Between 768px and 975px                                         ( 768～976px)
    *--》All Mobile Sizes: Less than 767px                                                                 (767以下)
    *--》Just Mobile Landscape: Between 480px and 767px                                 ( 480～767px)
    *--》Just Mobile Portrait: Less than 479px                                                           (479以下)
    
=================================================================================*/

/*===============================================================================
                               Browser-CSS Reset
=================================================================================*/
@import "Reset.css";
/*===============================================================================
                                     全域設定
=================================================================================*/

:root {
    color-scheme: light only;
}

/* #Basic Styles
================================================== */
body {
    /*background-color: #fff;
    color: #545454;*/
}

    body.Blank /*空白頁適用*/ {
        background: none;
        border-top: none;
    }

/* #Typography
================================================== */
/*#region Typography */
h1 {
    font-size: 3rem; /*48px*/
    line-height: 1.35em;
    margin-bottom: 14px;
}

h2 {
    font-size: 2.25rem; /*36px*/
    line-height: 1.35em;
    margin-bottom: 10px;
}

h3 {
    font-size: 1.875rem; /*30px*/
    line-height: 1.35em;
    margin-bottom: 8px;
}

h4 {
    font-size: 1.5rem; /*24px*/
    line-height: 1.35em;
    margin-bottom: 4px;
}

h5 {
    font-size: 1.25rem; /*20px*/
    line-height: 1.5em;
}

h6 {
    font-size: 1.125rem; /*18px*/
    line-height: 1.3125em;
}

h1, h2, h3, h4, h5, h6 {
    color: #000000;
}

.subheader {
    color: #3a3a3a;
}

a {
    text-decoration: none;
    color: #00B4AB;
}

    a:hover {
        color: #f86397;
        /*text-decoration: underline;*/
    }

#Wrap {
    _overflow: visible;
    _height: 1px;
    zoom: 1;
}


    #Wrap:after {
        content: ".";
        display: block;
        height: 1px;
        clear: both;
        visibility: hidden;
        font-size: 0;
        line-height: 0;
        margin: -1px 0 0 0;
    }

.clearfix:before, .clearfix:after {
    content: "\0020";
    display: block;
    height: 0;
    overflow: hidden;
}

.clearfix:after { /*修正Float 撐開 DIV*/
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
/* Hides from IE-mac \*/
* html .clearfix {
    height: 1%;
}
/* End hide from IE-mac */
/*#endregion *


/*===============================================================================
                         以下是全域版面設定
=================================================================================*/

#Wrap {
}

/* 視覺化全版
    -----------------------------------*/
/*#region wrapper */
.wrapper {
    width: 1360px;
    margin: 0 auto;
    padding: 0;
}

@media only screen and (min-width: 76.25em) and (max-width: 86.1875em) {
    .wrapper {
        width: 1200px;
    }
}

@media only screen and (min-width: 61.0625em) and (max-width: 76.1875em) {
    .wrapper {
        width: 960px;
    }
}

@media only screen and (min-width: 48em) and (max-width:61em) {
    
    .wrapper {
        width: 752px;
    }
}

@media only screen and (max-width: 47.9735em) {
	body {
        overflow-x: hidden;
    }

    .wrapper {
        width: 100%;
        /*-width: calc(19em - 1px);*/
    }
}

/*
@media only screen and (min-width: 30em) and (max-width: 47.9735em) {
    .wrapper {
        width: 100%;
    }
}

@media only screen and (max-width: 29.9375em) {
    .wrapper {
        width: 100%;
    }
}
*/
/*#endregion */

#Top {
    position: absolute;
    width: 0;
    height: 0;
}


/*-----------------FastMenu-----------------*/
.FastMenu {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 997;
}



    .FastMenu .Item {
        margin-top: 5px;
    }

        .FastMenu .Item a {
            width: 4rem;
            height: 4rem;
            text-align: center;
            vertical-align: middle;
            display: inline-block;
            background-color: rgb(42 42 42 / 70%);
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
            border-radius: 10px;
            color: #FFF;
            -webkit-transition: all .5s ease-out;
            -moz-transition: all .5s ease-out;
            -o-transition: all .5s ease-out;
            transition: all .5s ease-out;
        }

            .FastMenu .Item a:hover {
                background-color: #90c7c4;
                -webkit-box-shadow: 0 0.25rem 0.125rem 0 rgba(0,0,0,0.05);
                box-shadow: 0 0.25rem 0.125rem 0 rgba(0,0,0,0.05);
            }


            .FastMenu .Item a i {
                font-size: 3rem;
                margin-top: .5rem;
            }

            .FastMenu .Item a.Top:after {
                display: block;
                content: "Top";
                color: #1d9b8c;
                margin-top: -1.15rem;
                font-weight: bold;
                font-family: "Arial";
                font-size: 0.875rem;
            }



/*-----------------Header-----------------*/
/*#region Header */
#Header {
    background: linear-gradient(90deg,#6DC9A7 0%, #02A199 50%);
    background: -moz-linear-gradient(90deg,#6DC9A7 0%, #02A199 50%);
    background: -webkit-linear-gradient(90deg,#6DC9A7 10%, #02A199 50%);
    background: -o-linear-gradient(90deg,#6DC9A7 0%, #02A199 50%);
    min-height: 90px;
}

    #Header a:focus {
        outline: 2px dotted #6DC9A7;
    }

#Banner {
    margin: 10px auto;
}

    #Banner .Logo {
        height: 70px;
    }


    #Banner h1 {
        color: #FFF;
        font-size: 2.25rem;
        font-weight: bold;
        line-height: 73px;
        display: inline-block;
        margin-left: 10px;
        margin-bottom: 0;
    }




/* Menu
   --------------------*/
/*#region Menu */
.toggleMenu {
    position: absolute;
    top: -9999px;
    left: -9999px;
}

.toggleMenuLabel {
    cursor: pointer;
    user-select: none;
    margin-right: 55px;
}

    .toggleMenuLabel i.fas {
        font-size: 3rem;
        color: #FFF;
    }

.toggleMenu:focus ~ label i.fas {
    color: #FFB297;
}

.menuArea {
    position: fixed;
    left: -999px;
    top: 0px;
    z-index: 9999;
}



.closeMenuLabel {
    left: -100%;
    width: 2.75rem;
    height: 2.75rem;
    display: inline-block;
    text-align: center;
    background-color: #FFB297;
}

    .closeMenuLabel i.fas {
        font-size: 3rem;
        line-height: 2.75rem;
        color: #FFF;
    }

.menuArea-Overlay {
    background: rgba(255,255,255, 0.55);
}

.toggleMenu:checked ~ .menuArea {
    left: 0px;
}

    .toggleMenu:checked ~ .menuArea .mainMenu {
        position: fixed;
        left: 0;
        z-index: 9999;
        -webkit-transition: all .35s ease-out;
        -moz-transition: all .35s ease-out;
        -o-transition: all .35s ease-out;
        transition: all .35s ease-out;
    }


    .toggleMenu:checked ~ .menuArea .closeMenuLabel {
        position: fixed;
        left: 252px;
        z-index: 10000;
        -webkit-transition: all .35s ease-out;
        -moz-transition: all .35s ease-out;
        -o-transition: all .35s ease-out;
        transition: all .35s ease-out;
    }

    .toggleMenu:checked ~ .menuArea .menuArea-Overlay {
        background: rgba(0, 0, 0, 0.55);
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 9998;
        overflow: hidden;
        -webkit-transition: all .5s ease-out;
        -moz-transition: all .5s ease-out;
        -o-transition: all .5s ease-out;
        transition: all .5s ease-out;
    }


.mainMenu {
    left: -100%;
    background: #606060;
    width: calc(260px - 40px);
    min-height: 150px;
    height: calc(100% - 40px);
    overflow-y: scroll;
    padding: 20px;
}

    .mainMenu .Menu li {
        color: #FFF;
    }

        .mainMenu .Menu li a {
            color: #FFF;
        }

    .mainMenu .Menu > ul > li {
        font-size: 1.375rem;
        line-height: 1.875rem;
        font-weight: bold;
        border-bottom: 1px solid rgba(145, 145, 145, 0.73);
        padding-bottom: 5px;
        margin-bottom: 5px;
    }


    .mainMenu .Menu .secMenu {
        margin: 5px 0 5px 8px;
    }

        .mainMenu .Menu .secMenu > li {
            font-size: 1.125rem;
            line-height: 1.5rem;
            font-weight: normal;
        }

    .mainMenu .Menu .trdMenu {
        margin: 5px 0;
    }

        .mainMenu .Menu .trdMenu > li {
            font-size: 1rem;
            line-height: 1.3125rem;
        }

            .mainMenu .Menu .trdMenu > li:before {
                color: #FFF;
                content: "－";
            }

    .mainMenu .Menu .Colse i.fas {
        margin-right: .5rem;
    }
/*#endregion */


/* 導覽區
   --------------------*/
/*#region Link&SearchArea */
.LinkSearchArea {
    vertical-align: middle;
    display: inline-block;
    margin-left: 460px;
}

    .LinkSearchArea .accesskey {
        position: static;
        display: inline-block;
        line-height: 48px;
        vertical-align: top;
        margin-right: .5rem;
    }

    .LinkSearchArea ul {
        display: inline-block;
    }

        .LinkSearchArea ul li {
            float: left;
            margin-right: .5rem;
            font-size: 1.125rem;
        }

            .LinkSearchArea ul li:after {
                content: "";
                border-right: 1px solid #6DC9A7;
                margin-left: .5rem;
            }

            .LinkSearchArea ul li:last-child:after {
                border-right: none;
                margin-left: 0;
            }

            .LinkSearchArea ul li a {
                color: #FFF;
                line-height: 48px;
            }

                .LinkSearchArea ul li a:hover {
                    color: #FFF;
                    text-decoration: underline;
                }


/*#endregion */




@media only screen and (min-width: 76.25em) and (max-width: 86.1875em) {
    .LinkSearchArea {
        margin-left: 300px;
    }
}

@media only screen and (max-width: 76.1875em) {
    .LinkSearchArea {
        margin-left: 20px;
        margin-right: 20px;
        float: right;
    }
}

@media only screen and (min-width: 48em) and (max-width:61em) {
    .LinkSearchArea {
        margin-left: 20px;
        margin-right: 20px;
        float: right;
    }
}

@media only screen and (max-width:61em) {
    .toggleMenuLabel {
        margin-left: 32px;
    }
}

@media only screen and (max-width: 47.9735em) {
    #Header {
        min-height: 20px;
    }

    #Banner .Logo {
        height: 25px;
    }

    #Banner h1 {
        font-size: 1.25rem;
        line-height: 25px;
        margin-left: 10px;
    }

    .toggleMenuLabel {
        margin-left: 8px;
        margin-right: 17px;
    }

        .toggleMenuLabel i.fas {
            font-size: 1.5rem;
        }

    .LinkSearchArea {
        display: none;
    }
}

@media only screen and (max-width: 29.9375em) {
    #Banner h1 {
        margin-left: 8px;
    }

    .toggleMenuLabel {
        margin-right: 8px;
    }
}
/*#endregion */

/*-----------------Content-----------------*/
/*#region Content */

#Content {
}


.Blank #Content {
}

/*#region Breadcrumb */
.BreadcrumbArea {
    padding: .75rem 0;
    min-height: 32px;
    background-color: #DBFFF9;
}

.BreadcrumbCont {
    line-height: 2rem;
}

.BreadcrumbArea .accesskey {
    position: static;
    display: inline-block;
    margin-left: 5px;
}


.BreadcrumbArea .Breadcrumb {
    color: #266A5F;
    display: inline;
    margin-left: .75rem;
    font-size: 1.125rem;
}

    .BreadcrumbArea .Breadcrumb span {
        /*font-weight:600;*/
    }

    .BreadcrumbArea .Breadcrumb a {
        color: #266A5F;
        /*font-weight: normal;*/
    }

        .BreadcrumbArea .Breadcrumb a:hover {
            text-decoration: underline;
        }

    .BreadcrumbArea .Breadcrumb:before {
        display: inline-block;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        font-family: "Font Awesome 5 Free";
        content: "\f015";
        font-weight: 900;
        color: #4E8D83;
        font-size: 1.5rem;
        margin-right: .5rem;
    }

@media only screen and (max-width: 47.9735em) {
    .BreadcrumbArea {
        padding: 6px 0;
        min-height: 32px;
    }

    .BreadcrumbCont {
        line-height: 1.75rem;
    }

    .BreadcrumbArea .accesskey {
        margin-left: 10px;
    }

    .BreadcrumbArea .Breadcrumb {
        margin-left: 5px;
        font-size: 0.875rem;
    }

        .BreadcrumbArea .Breadcrumb:before {
            font-size: 1.25rem;
            margin-right: 5px;
        }
}
/*#endregion */


#Main {
}

/*#region PageTitle */
.PageTitle {
    border-bottom: 1px solid #FFD832;
    margin-top: 10px;
    margin-bottom: 20px;
}

    .PageTitle h2 {
        display: inline-block;
        font-size: 2rem;
        font-weight: bold;
        color: #585858;
        margin-bottom: 0;
        padding-left: 2rem;
    }


        .PageTitle h2:after {
            content: "";
            display: block;
            height: 5px;
            width: calc(100% + 4rem);
            margin-left: -2rem;
            margin-top: .5rem;
            background: linear-gradient(90deg,#FFD832 0%, #F5C05A 50%);
            background: -moz-linear-gradient(90deg,#FFD832 0%, #F5C05A 50%);
            background: -webkit-linear-gradient(90deg,#FFD832 10%, #F5C05A 50%);
            background: -o-linear-gradient(90deg,#FFD832 0%, #F5C05A 50%);
        }
/*#endregion */

/*#region SocialMedia */
.SocialMedia {
    margin-bottom: 20px;
    text-align: right;
}

    .SocialMedia li {
        display: inline-block;
        margin-right: 10px;
    }

        .SocialMedia li a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: #DBDBDB;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            border-radius: 50%;
        }

            .SocialMedia li a i {
                font-size: 1.125rem;
                line-height: 40px;
                text-align: center;
                display: block;
                color: #fff;
            }

        .SocialMedia li.Facebook:hover a {
            background-color: #4267B2;
        }

        .SocialMedia li.Twitter:hover a {
            background-color: #1DA1F2;
        }

        .SocialMedia li.Google:hover a {
            background-color: #DB4437;
        }

        .SocialMedia li.LINE:hover a {
            background-color: #00B900;
        }

        .SocialMedia li.Mail:hover a {
            background-color: #00B4AB;
        }

    .SocialMedia.PageBottom {
        display: none;
    }
/*#endregion */

/*#region main article & title */
main article {
    padding: 20px;
    color: #707070;
    font-size: 1.125rem;
}

    main article p {
        line-height: 1.875rem;
        margin-bottom: 1.25rem;
    }

        main article p:last-child {
            margin-bottom: 0;
        }

main .BlockSpace {
    padding-bottom: 40px;
}

main h3 {
    font-size: 1.875rem;
    font-weight: bold;
    line-height: 2.5rem;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}



main h4 {
    font-size: 1.75rem;
    line-height: 2.5rem;
    margin-bottom: 20px;
    margin-left: 20px;
    text-indent: calc(-1em + 10px);
}

    main h4 + article {
        padding-top: 0;
    }

    main h4:before {
        content: "";
        border-left: 6px solid #CCC;
        margin-right: 9px;
    }
/*#endregion */

/*#region main with Colors */
main h3.blue {
    color: #04478D;
}

main h3.green {
    color: #597B00;
}

main h3.gray {
    color: #636363;
}

main h3.dark {
    color: #FFFFFF;
}


main h4.blue {
    color: #020926;
}

    main h4.blue:before {
        border-left-color: #7ABDE2;
    }

main h4.green {
    color: #305A06;
}

    main h4.green:before {
        border-left-color: #D1DC3A;
    }

main h4.gray {
    color: #535353;
}

    main h4.gray:before {
        border-left-color: #A7A7A7;
    }

main h4.dark {
    color: #E9E9E9;
}

    main h4.dark:before {
        border-left-color: #FFB297;
    }

main article.dark {
    color: #ffffff;
}
/*#endregion */

/*#region branchMenu */
.branchMenu {
    box-sizing: border-box;
    padding: 10px 0;
}

    .branchMenu li {
        color: #6A3400;
        background-color: #FEF6EB;
        font-size: 1.75rem;
        display: inline-block;
        width: calc(50% - 1rem);
        margin-right: 1rem;
        margin-bottom: 10px;
    }

        .branchMenu li:before {
            content: "";
            display: inline;
            border-left: 8px solid #FB7E5E;
            margin-right: 1.625rem;
            -webkit-transition: all 0.1s linear;
            -moz-transition: all 0.1s linear;
            -o-transition: all 0.1s linear;
            transition: all 0.1s linear;
        }

        .branchMenu li:nth-child(2n) {
            margin-right: 0;
        }

        .branchMenu li a {
            display: inline-block;
            color: #6A3400;
            line-height: 3rem;
            margin: 0.25rem .5rem;
        }

        .branchMenu li:hover:before {
            border-left-color: #ef532b;
            border-left-width: 12px;
        }
/*#endregion */



@media only screen and (min-width: 61.0625em) {
    .SocialMedia {
        margin-top: -4.5rem;
        position: relative;
        text-align: right;
        right: auto;
        top: auto;
        display: block;
    }
}

@media only screen and (max-width:61em) {
    .SocialMedia {
        display: none;
    }

        .SocialMedia.PageBottom {
            display: block;
            margin-bottom: 0px;
        }

            .SocialMedia.PageBottom .Title {
                color: #666;
                font-size: 1rem;
            }

            .SocialMedia.PageBottom ul {
                display: inline-block;
            }
}

@media only screen and (max-width: 47.9735em) {
    .PageTitle {
        margin-bottom: 10px;
    }

        .PageTitle h2 {
            font-size: 1.25rem;
            padding-left: 1rem;
        }

            .PageTitle h2:after {
                width: calc(100% + 2rem);
                margin-left: -1rem;
            }



    main h3 {
        font-size: 1.25rem;
        line-height: 2rem;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    main h4 {
        font-size: 1.125rem;
        line-height: 1.5rem;
        margin-bottom: 10px;
        margin-left: 20px;
    }

    main article {
        padding: .75rem 1rem;
        font-size: 1rem;
    }

        main article p {
            line-height: 1.75rem;
            margin-bottom: 1rem;
        }

    main .BlockSpace {
        padding-bottom: 20px;
    }

    .branchMenu li {
        font-size: 1.125rem;
        width: calc(100% - 1.5rem);
        margin-left: .5rem;
    }

        .branchMenu li:before {
            margin-right: .5rem;
        }

        .branchMenu li a {
            line-height: 2.5rem;
            margin: 0 .5rem;
        }
}

/*#endregion */

/*-----------------Footer-----------------*/
/*#region Footer */
#Footer {
    background-color: #545454;
    background-image: url(../../images/Footer_Pattern.png);
    background-position: calc(100% + 300px) -260px;
    background-size: cover;
    background-repeat: no-repeat;
    color: #FFF;
}

    #Footer a {
        color: #FFF;
    }

        #Footer a:focus {
            outline: 2px dotted #FFCAB8;
            -webkit-transition: outline 0.15s linear;
            -moz-transition: outline 0.15s linear;
            -o-transition: outline 0.15s linear;
            transition: outline 0.15s linear;
        }


/*---*/
/*#region FooterMenu */
#FooterMenu {
    margin: 30px 20px 133px 20px;
}


    #FooterMenu nav.Menu li {
        line-height: 1.5rem;
    }

        #FooterMenu nav.Menu li a:hover {
            color: #FFCAB8;
            text-decoration: underline;
        }

        #FooterMenu nav.Menu li i {
            margin-left: .5rem;
        }


    #FooterMenu nav.Menu > ul > li {
        float: left;
        width: 14%;
        font-size: 1.125rem;
        font-weight: bold;
    }

    #FooterMenu nav.Menu ul.secMenu {
        margin-top: 15px;
    }

        #FooterMenu nav.Menu ul.secMenu > li {
            font-size: 1rem;
            line-height: 1.75rem;
        }

            #FooterMenu nav.Menu ul.secMenu > li a {
                color: #E4E4E4;
            }

                #FooterMenu nav.Menu ul.secMenu > li a:hover {
                    color: #FFCAB8;
                }

    #FooterMenu nav.Menu ul.trdMenu {
        margin-top: 5px;
        margin-bottom: 5px;
    }

        #FooterMenu nav.Menu ul.trdMenu > li {
            font-size: 1rem;
            margin-left: .25rem;
        }

            #FooterMenu nav.Menu ul.trdMenu > li:before {
                content: "－";
            }

/*#endregion */

/*---*/
/*#region FooterInfo */
#FooterInfo {
    margin-bottom: 30px;
    padding: 0 20px;
}

    #FooterInfo .Announce {
        font-size: 1rem;
        line-height: 1.5em;
        padding-top: 30px;
        margin-bottom: 20px;
        /*border-top: 1px solid rgba(165,165,165,0.2);*/
    }

        #FooterInfo .Announce a:hover {
            text-decoration: underline;
        }
        #FooterInfo .Announce .info {
            margin-bottom:0.25rem;
        }
            #FooterInfo .Announce .info i{
                margin-right:0.5em;
            }
            #FooterInfo address {
                width: 80%;
                float: left;
                font-size: 0.875rem;
            }
    #FooterInfo .Announce .VersionType {
        color:#CCC;
    }
        #FooterInfo address p {
            line-height: 1.5rem;
        }

    #FooterInfo .listMark {
        width: 20%;
        float: left;
    }

        #FooterInfo .listMark li {
            float: left;
            margin-right: 36px;
        }

            #FooterInfo .listMark li:last-child {
                margin-right: unset;
            }

        #FooterInfo .listMark img {
            height: 53px;
        }

            #FooterInfo .listMark img:hover {
                outline: 1px solid #FFCAB8;
            }



/*#endregion */


@media only screen and (max-width: 76.1875em) { /*and (min-width: 61em)*/
    #FooterMenu {
        margin: 20px 2% 0px 2%;
    }

        #FooterMenu nav.Menu > ul > li {
            vertical-align: top;
            display: inline-block;
            float: none;
            width: 18%;
            margin-right: 1%;
            margin-bottom: 20px;
        }

            #FooterMenu nav.Menu > ul > li:nth-column(5n-1) {
                margin-right: 0%;
            }

    #FooterInfo address {
        width: unset;
        float: none;
    }

    #FooterInfo .listMark {
        width: unset;
        float: none;
        margin-top: 20px;
    }

        #FooterInfo .listMark li {
            margin-right: 24px;
        }

        #FooterInfo .listMark img {
            height: 40px;
        }
}

@media only screen and (min-width: 61.0625em) and (max-width: 76.1875em) {
    #Footer {
        background-position: calc(100% + 150px) -180px;
    }
}

@media only screen and (min-width: 48em) and (max-width:61em) {
    #Footer {
        background-position: calc(100% + 180px) -140px;
    }
}

@media only screen and (max-width: 47.9735em) {
    #Footer {
        background-position: calc(100% + 180px) -100px;
    }

    #FooterMenu nav.Menu ul.secMenu {
        margin-top: 10px;
    }

    #FooterMenu nav.Menu > ul > li {
        width: 23%;
        margin-right: 1%;
    }

    #FooterInfo address p {
        margin-bottom: 5px;
    }
}

@media only screen and (max-width: 29.9375em) {
    #Footer {
        background-position: calc(100% + 176px) -20px;
    }

    #FooterMenu {
        margin: 20px 5% 0px 5%;
    }

        #FooterMenu nav.Menu > ul > li {
            width: 47%;
            margin-right: 2%;
        }
}




/*#endregion */

/*===============================================================================
                         General Setting
=================================================================================*/
/*#region General Setting */
.Clear {
    clear: both;
    /*以下新增*/
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}

.Dispear {
    display: none;
}

.Show {
    display: block;
}

/*-----------------文字顏色標註設定-----------------*/
.Note { /*備註 灰字*/
    font-size: small;
    color: #666666;
}

.Alert { /*紅*/
    color: #CC0000;
}

.Alert2 { /*桃紅*/
    color: #FF3366;
}

.Near { /*橘*/
    color: #FF9933;
}

/*-----------------文字格式設定-----------------*/
.smallWords {
    font-size: small;
}

.AddHeight {
    line-height: 1.5em;
}

/*-----------------文字靠齊設定-----------------*/
.txtLeft {
    text-align: left;
}

.txtCeter {
    text-align: center;
}

.txtRight {
    text-align: right;
}

/*-----------------圖片靠齊設定-----------------*/
.imgMiddle {
    vertical-align: middle;
}
/*-----------------指標-----------------*/
.clickable {
    cursor: pointer;
}

.unclickable {
    cursor: default;
}
/*-----------Some Fix From Reset---------------*/
button, label, select, input, textarea {
    font-family: "\5FAE\8EDF\6B63\9ED1\9AD4", Arial;
}

    button, select, input[type="text"], input[type="search"], input[type="password"], textarea {
        min-height: 2em;
        line-height: 2em;
    }

select {
    line-height: 2em;
    /*margin:-2px;*/
    padding: 2px 3px;
    /*display: block;*/
    font-size: 1em;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    vertical-align: top;
}

label {
    margin: 0 .5em;
}

input[type="checkbox"], input[type="radio"] {
    vertical-align: middle;
    width: 1em;
    height: 1em;
}

input[type="button"], input[type="submit"], input[type="reset"], button {
    height: 2.25em;
}

.avoid-clicks {
    pointer-events: none;
}

.ui-datepicker .ui-datepicker-title select.ui-datepicker-year {
    width: 4.5em;
    margin-right: .5em;
}

.ui-datepicker .ui-datepicker-title select.ui-datepicker-month {
    width: 2.5em;
    margin-left: .5em;
}

.ui-datepicker-trigger {
    margin-left: 5px;
    cursor: pointer;
}
/*#endregion */

/*=========================================================================
     Responsive Web Design Grid System
  =========================================================================  */
/*#region Grid System */
.columns {
    float: left;
    display: inline;
    margin-left: 20px;
    margin-right: 20px;
}
/* New Base Grid       1360
     -----------------------*/
.one.columns {
    width: 45px;
}

.two.columns {
    width: 130px;
}

.three.columns {
    width: 215px;
}

.four.columns {
    width: 300px;
}

.five.columns {
    width: 385px;
}

.six.columns {
    width: 470px;
}

.seven.columns {
    width: 555px;
}

.eight.columns {
    width: 640px;
}

.nine.columns {
    width: 725px;
}

.ten.columns {
    width: 810px;
}

.eleven.columns {
    width: 895px;
}

.twelve.columns {
    width: 980px;
}


.thirteen.columns {
    width: 1065px;
}

.fourteen.columns {
    width: 1150px;
}

.fifteen.columns {
    width: 1235px;
}

.sixteen.columns {
    width: 1320px;
}

.one-third.columns {
    width: 413px;
}

.two-thirds.columns {
    width: 865px;
}
/* Grid       1200
     -----------------------*/
@media only screen and (min-width: 76.25em) and (max-width: 86.1875em) {
    .one.columns {
        width: 35px;
    }

    .two.columns {
        width: 110px;
    }

    .three.columns {
        width: 185px;
    }

    .four.columns {
        width: 260px;
    }

    .five.columns {
        width: 335px;
    }

    .six.columns {
        width: 410px;
    }

    .seven.columns {
        width: 485px;
    }

    .eight.columns {
        width: 560px;
    }

    .nine.columns {
        width: 635px;
    }

    .ten.columns {
        width: 710px;
    }

    .eleven.columns {
        width: 785px;
    }

    .twelve.columns {
        width: 860px;
    }

    .thirteen.columns {
        width: 935px;
    }

    .fourteen.columns {
        width: 1010px;
    }

    .fifteen.columns {
        width: 1085px;
    }

    .sixteen.columns {
        width: 1160px;
    }

    .one-third.columns {
        width: 360px;
    }

    .two-thirds.columns {
        width: 760px;
    }
}


/* Base Grid       960
     -----------------------*/
@media only screen and (min-width: 61.0625em) and (max-width: 76.1875em) {
    .columns {
        margin-left: 10px;
        margin-right: 10px;
    }

    .one.columns {
        width: 40px;
    }

    .two.columns {
        width: 100px;
    }

    .three.columns {
        width: 160px;
    }

    .four.columns {
        width: 220px;
    }

    .five.columns {
        width: 280px;
    }

    .six.columns {
        width: 340px;
    }

    .seven.columns {
        width: 400px;
    }

    .eight.columns {
        width: 460px;
    }

    .nine.columns {
        width: 520px;
    }

    .ten.columns {
        width: 580px;
    }

    .eleven.columns {
        width: 640px;
    }

    .twelve.columns {
        width: 700px;
    }

    .thirteen.columns {
        width: 760px;
    }

    .fourteen.columns {
        width: 820px;
    }

    .fifteen.columns {
        width: 880px;
    }

    .sixteen.columns {
        width: 940px;
    }

    .one-third.columns {
        width: 300px;
    }

    .two-thirds.columns {
        width: 620px;
    }
}
/* #Tablet (Portrait)  752
================================================== */
@media only screen and (min-width: 48em) and (max-width:61em) {
    .columns {
        margin-left: 10px;
        margin-right: 10px;
    }

    .one.columns {
        width: 27px;
    }

    .two.columns {
        width: 74px;
    }

    .three.columns {
        width: 121px;
    }

    .four.columns {
        width: 168px;
    }

    .five.columns {
        width: 215px;
    }

    .six.columns {
        width: 262px;
    }

    .seven.columns {
        width: 309px;
    }

    .eight.columns {
        width: 356px;
    }

    .nine.columns {
        width: 403px;
    }

    .ten.columns {
        width: 450px;
    }

    .eleven.columns {
        width: 497px;
    }

    .twelve.columns {
        width: 544px;
    }

    .thirteen.columns {
        width: 591px;
    }

    .fourteen.columns {
        width: 638px;
    }

    .fifteen.columns {
        width: 685px;
    }

    .sixteen.columns {
        width: 732px;
    }

    .one-third.columns {
        width: 230px;
    }

    .two-thirds.columns {
        width: 482px;
    }
}

/*  # All Mobile    767↓
================================================== */
@media only screen and (max-width: 47.9735em) {
    .columns {
        margin-left: 10px;
        margin-right: 10px;
    }

    .one.columns,
    .two.columns,
    .three.columns,
    .four.columns,
    .five.columns,
    .six.columns,
    .seven.columns,
    .eight.columns,
    .nine.columns,
    .ten.columns,
    .eleven.columns,
    .twelve.columns,
    .thirteen.columns,
    .fourteen.columns,
    .fifteen.columns,
    .sixteen.columns,
    .one-third.columns,
    .two-thirds.columns {
        width: 300px;
    }
}


/* #Mobile (Landscape)  480～767
================================================== */
@media only screen and (min-width: 30em) and (max-width: 47.9735em) {
    .columns {
        margin-left: 10px;
        margin-right: 10px;
    }

    .one.columns,
    .two.columns,
    .three.columns,
    .four.columns,
    .five.columns,
    .six.columns,
    .seven.columns,
    .eight.columns,
    .nine.columns,
    .ten.columns,
    .eleven.columns,
    .twelve.columns,
    .thirteen.columns,
    .fourteen.columns,
    .fifteen.columns,
    .sixteen.columns,
    .one-third.columns,
    .two-thirds.columns {
        width: 420px;
    }
}
/*#endregion */

/*===============================================================================
                                    本版設定
=================================================================================*/

.Downgrade {
    z-index: -1;
}

/*-----------------iOS字體縮放鎖定-----------------*/
html {
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

/*-----------------無障礙-----------------*/
/*#region Accessibility */
.TopAccessibility a {
    position: absolute;
    top: 0px;
    left: -999px;
    width: 0px;
    height: 0px;
    color: #FFF;
}

    .TopAccessibility a:hover {
        color: #eac400;
    }

    .TopAccessibility a:focus {
        position: absolute;
        top: 10px;
        left: 10px;
        width: auto;
        height: auto;
        padding: 5px;
        background-color: rgba(0,0,0,0.8);
    }

.accesskey {
    position: absolute;
    left: 5px;
    z-index: 0;
}

@media only screen and (max-width: 47.9735em) {
    .accesskey {
        display: none;
    }
}

#Header .accesskey a {
    color: #6DC9A7;
}

    #Header .accesskey a:focus, #Header .accesskey a:hover {
        color: #FFF;
    }



#Footer .accesskey a {
    color: #787878;
}

    #Footer .accesskey a:focus, #Footer .accesskey a:hover {
        color: #E4E4E4;
    }
/*#endregion */

/*-----------------kbd-----------------*/
kbd {
    border-top: 1px solid #BBB;
    border-bottom: 3px solid #BBB;
    border-left: 2px solid #BBB;
    border-right: 2px solid #BBB;
    padding: 0.125rem 0.5rem;
    border-radius: .25rem;
    -moz-border-radius: .25rem;
    -webkit-border-radius: .25rem;
    margin: 0 0.1rem;
    background-color: #fff;
    color: #515151;
}

/*-----------------No Script-----------------*/
/*#region No Script */
.TopNotice {
    display: none;
    padding: 0;
}

html.no-js .TopNotice, #Wrap.no-js .TopNotice {
    display: block;
    padding: 10px;
    font-weight: bold;
    line-height: 1.5rem;
    color: #FFF;
    background-color: #3a3a3a;
}
/*#endregion */

/*-----------------Dark Mode / Samsung NG-----------------*/
/*#region NG Dark */
.TopDarkNotice {
    display: none;
    padding: 0;
}

html.NGDark .TopDarkNotice, #Wrap.NGDark .TopDarkNotice {
    display: block;
    padding: 10px;
    font-weight: bold;
    line-height: 1.5rem;
    color: #FFF;
    background-color: #3a3a3a;
}
/*#endregion */

/*-----------------Color Setting-----------------*/
/*#region .ColorPatient 日顏色 － 增加 */
.ColorPatient.bg.Lv0 {
    color: #313131;
    background-color: #FFFFFF;
}

.ColorPatient.bg.Lv1 {
    color: #313131;
    background-color: #FCE4EC;
}

.ColorPatient.bg.Lv2 {
    color: #313131;
    background-color: #F8BBD0;
}

.ColorPatient.bg.Lv3 {
    color: #313131;
    background-color: #F48FB1;
}

.ColorPatient.bg.Lv4 {
    color: #FFFFFF;
    background-color: #F06292;
}

.ColorPatient.bg.Lv5 {
    color: #FFFFFF;
    background-color: #E91E63;
}

.ColorPatient.bg.Lv6 {
    color: #FFFFFF;
    background-color: #C2185B;
}

.ColorPatient.bg.Lv7 {
    color: #FFFFFF;
    background-color: #880E4F;
}

.ColorPatient.bg.Lv8 {
    color: #FFFFFF;
    background-color: #630034;
}
/*#endregion */

/*#region .ColorPatientBig 日顏色大尺度 － 增加 */
.ColorPatientBig.bg.Lv0 {
    color: #313131;
    background-color: #FFFFFF;
}

.ColorPatientBig.bg.Lv1 {
    color: #313131;
    background-color: #FBE9E7;
}

.ColorPatientBig.bg.Lv2 {
    color: #313131;
    background-color: #F8DBD7;
}

.ColorPatientBig.bg.Lv3 {
    color: #313131;
    background-color: #FFCCBC;
}

.ColorPatientBig.bg.Lv4 {
    color: #313131;
    background-color: #FEBCA7;
}

.ColorPatientBig.bg.Lv5 {
    color: #313131;
    background-color: #FFAB91;
}

.ColorPatientBig.bg.Lv6 {
    color: #313131;
    background-color: #F99D81;
}

.ColorPatientBig.bg.Lv7 {
    color: #FFFFFF;
    background-color: #FF8A65;
}

.ColorPatientBig.bg.Lv8 {
    color: #FFFFFF;
    background-color: #F66F45;
}

.ColorPatientBig.bg.Lv9 {
    color: #FFFFFF;
    background-color: #EC5324;
}

.ColorPatientBig.bg.Lv10 {
    color: #FFFFFF;
    background-color: #DC4617;
}

.ColorPatientBig.bg.Lv11 {
    color: #FFFFFF;
    background-color: #C2390E;
}

.ColorPatientBig.bg.Lv12 {
    color: #FFFFFF;
    background-color: #A72E09;
}

.ColorPatientBig.bg.Lv13 {
    color: #FFFFFF;
    background-color: #912909;
}

.ColorPatientBig.bg.Lv14 {
    color: #FFFFFF;
    background-color: #6E1F06;
}

.ColorPatientBig.bg.Lv15 {
    color: #FFFFFF;
    background-color: #641800;
}

.ColorPatient.border.Lv0 {
    border-color: #FFFFFF;
}

.ColorPatient.border.Lv1 {
    border-color: #FCE4EC;
}

.ColorPatient.border.Lv2 {
    border-color: #F8BBD0;
}

.ColorPatient.border.Lv3 {
    border-color: #F48FB1;
}

.ColorPatient.border.Lv4 {
    border-color: #F06292;
}

.ColorPatient.border.Lv5 {
    border-color: #E91E63;
}

.ColorPatient.border.Lv6 {
    border-color: #C2185B;
}

.ColorPatient.border.Lv7 {
    border-color: #880E4F;
}

.ColorPatient.border.Lv8 {
    border-color: #630034;
}

.ColorPatientBig.border.Lv0 {
    border-color: #FFFFFF;
}

.ColorPatientBig.border.Lv1 {
    border-color: #FCE4EC;
}

.ColorPatientBig.border.Lv2 {
    border-color: #F8BBD0;
}

.ColorPatientBig.border.Lv3 {
    border-color: #F48FB1;
}

.ColorPatientBig.border.Lv4 {
    border-color: #F06292;
}

.ColorPatientBig.border.Lv5 {
    border-color: #E91E63;
}

.ColorPatientBig.border.Lv6 {
    border-color: #C2185B;
}

.ColorPatientBig.border.Lv7 {
    border-color: #880E4F;
}

.ColorPatientBig.border.Lv8 {
    border-color: #630034;
}


/*#endregion */

/*#region .ColorPatientLarge 日顏色巨量尺度 － 增加 */
.ColorPatientLarge.bg.Lv0 {
    color: #313131;
    background-color: #FFFFFF;
}

.ColorPatientLarge.bg.Lv1 {
    color: #313131;
    background-color: #EDE7F6;
}

.ColorPatientLarge.bg.Lv2 {
    color: #313131;
    background-color: #E1D6F5;
}

.ColorPatientLarge.bg.Lv3 {
    color: #313131;
    background-color: #D1C4E9;
}

.ColorPatientLarge.bg.Lv4 {
    color: #313131;
    background-color: #C6B3EB;
}

.ColorPatientLarge.bg.Lv5 {
    color: #313131;
    background-color: #BAA4E2;
}

.ColorPatientLarge.bg.Lv6 {
    color: #313131;
    background-color: #A992D5;
}

.ColorPatientLarge.bg.Lv7 {
    color: #FFFFFF;
    background-color: #9C81CD;
}

.ColorPatientLarge.bg.Lv8 {
    color: #FFFFFF;
    background-color: #9372CC;
}

.ColorPatientLarge.bg.Lv9 {
    color: #FFFFFF;
    background-color: #8A63CF;
}

.ColorPatientLarge.bg.Lv10 {
    color: #FFFFFF;
    background-color: #7B50C8;
}

.ColorPatientLarge.bg.Lv11 {
    color: #FFFFFF;
    background-color: #693ABC;
}

.ColorPatientLarge.bg.Lv12 {
    color: #FFFFFF;
    background-color: #5A33A7;
}

.ColorPatientLarge.bg.Lv13 {
    color: #FFFFFF;
    background-color: #482A91;
}

.ColorPatientLarge.bg.Lv14 {
    color: #FFFFFF;
    background-color: #3A207A;
}

.ColorPatientLarge.bg.Lv15 {
    color: #FFFFFF;
    background-color: #2F1963;
}
/*#endregion */

/*#region .ColorPatient.Decrease 日顏色 － 減少 */
.ColorPatient.Decrease.bg.Lv0 {
    color: #313131;
    background-color: #FFFFFF;
}

.ColorPatient.Decrease.bg.Lv1 {
    color: #313131;
    background-color: #E0F2F1;
}

.ColorPatient.Decrease.bg.Lv2 {
    color: #313131;
    background-color: #B2DFDB;
}

.ColorPatient.Decrease.bg.Lv3 {
    color: #313131;
    background-color: #80CBC4;
}

.ColorPatient.Decrease.bg.Lv4 {
    color: #FFFFFF;
    background-color: #4DB6AC;
}

.ColorPatient.Decrease.bg.Lv5 {
    color: #FFFFFF;
    background-color: #17978B;
}

.ColorPatient.Decrease.bg.Lv6 {
    color: #FFFFFF;
    background-color: #007A6D;
}

.ColorPatient.Decrease.bg.Lv7 {
    color: #FFFFFF;
    background-color: #0F4E46;
}

.ColorPatient.Decrease.bg.Lv8 {
    color: #FFFFFF;
    background-color: #002A25;
}
/*#endregion */

/*#region .ColorPatientBig.Decrease 日顏色大尺度 － 減少 */
.ColorPatientBig.Decrease.bg.Lv1 {
    color: #313131;
    background-color: #E1F5FE;
}

.ColorPatientBig.Decrease.bg.Lv2 {
    color: #313131;
    background-color: #CBEFFF;
}

.ColorPatientBig.Decrease.bg.Lv3 {
    color: #313131;
    background-color: #B3E5FC;
}

.ColorPatientBig.Decrease.bg.Lv4 {
    color: #313131;
    background-color: #9BE0FF;
}

.ColorPatientBig.Decrease.bg.Lv5 {
    color: #313131;
    background-color: #81D4FA;
}

.ColorPatientBig.Decrease.bg.Lv6 {
    color: #313131;
    background-color: #67CFFF;
}

.ColorPatientBig.Decrease.bg.Lv7 {
    color: #FFFFFF;
    background-color: #4FC3F7;
}

.ColorPatientBig.Decrease.bg.Lv8 {
    color: #FFFFFF;
    background-color: #24B1F1;
}

.ColorPatientBig.Decrease.bg.Lv9 {
    color: #FFFFFF;
    background-color: #15A8EB;
}

.ColorPatientBig.Decrease.bg.Lv10 {
    color: #FFFFFF;
    background-color: #0099DF;
}

.ColorPatientBig.Decrease.bg.Lv11 {
    color: #FFFFFF;
    background-color: #008ACE;
}
.ColorPatientBig.Decrease.bg.Lv12 {
    color: #FFFFFF;
    background-color: #0077B1;
}

.ColorPatientBig.Decrease.bg.Lv13 {
    color: #FFFFFF;
    background-color: #00649A;
}

.ColorPatientBig.Decrease.bg.Lv14 {
    color: #FFFFFF;
    background-color: #004D77;
}

.ColorPatientBig.Decrease.bg.Lv15 {
    color: #FFFFFF;
    background-color: #003453;
}

.ColorPatient.Decrease.border.Lv0 {
    border-color: #FFFFFF;
}

.ColorPatient.Decrease.border.Lv1 {
    border-color: #E0F2F1;
}

.ColorPatient.Decrease.border.Lv2 {
    border-color: #B2DFDB;
}

.ColorPatient.Decrease.border.Lv3 {
    border-color: #80CBC4;
}

.ColorPatient.Decrease.border.Lv4 {
    border-color: #4DB6AC;
}

.ColorPatient.Decrease.border.Lv5 {
    border-color: #17978B;
}

.ColorPatient.Decrease.border.Lv6 {
    border-color: #007A6D;
}

.ColorPatient.Decrease.border.Lv7 {
    border-color: #0F4E46;
}

.ColorPatient.Decrease.border.Lv8 {
    border-color: #002A25;
}


/*#endregion */

/*#region .ColorPatientLarge.Decrease 日顏色巨量尺度 － 減少 */
.ColorPatientLarge.Decrease.bg.Lv1 {
    color: #313131;
    background-color: #FFFDE7;
}

.ColorPatientLarge.Decrease.bg.Lv2 {
    color: #313131;
    background-color: #FAF6CA;
}

.ColorPatientLarge.Decrease.bg.Lv3 {
    color: #313131;
    background-color: #FFF59D;
}

.ColorPatientLarge.Decrease.bg.Lv4 {
    color: #313131;
    background-color: #FFF176;
}

.ColorPatientLarge.Decrease.bg.Lv5 {
    color: #313131;
    background-color: #FFEB3E;
}

.ColorPatientLarge.Decrease.bg.Lv6 {
    color: #313131;
    background-color: #FFDF50;
}

.ColorPatientLarge.Decrease.bg.Lv7 {
    color: #FFFFFF;
    background-color: #FDD938;
}

.ColorPatientLarge.Decrease.bg.Lv8 {
    color: #FFFFFF;
    background-color: #F8CD12;
}

.ColorPatientLarge.Decrease.bg.Lv9 {
    color: #FFFFFF;
    background-color: #ECC000;
}

.ColorPatientLarge.Decrease.bg.Lv10 {
    color: #FFFFFF;
    background-color: #DEB500;
}

.ColorPatientLarge.Decrease.bg.Lv11 {
    color: #FFFFFF;
    background-color: #CDA700;
}

.ColorPatientLarge.Decrease.bg.Lv12 {
    color: #FFFFFF;
    background-color: #B19000;
}

.ColorPatientLarge.Decrease.bg.Lv13 {
    color: #FFFFFF;
    background-color: #A28400;
}

.ColorPatientLarge.Decrease.bg.Lv14 {
    color: #FFFFFF;
    background-color: #957900;
}

.ColorPatientLarge.Decrease.bg.Lv15 {
    color: #FFFFFF;
    background-color: #6E5A00;
}
/*#endregion */

/*-----------------MyGroupControls Setting-----------------*/
/*#region MyGroupControls Setting */
.MyGroupControls {
    vertical-align: -webkit-baseline-middle;
}

    .MyGroupControls input {
        position: absolute;
        left: -999px;
    }

    .MyGroupControls label {
        font-size: 1rem;
        display: inline-block;
        text-align: center;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-appearance: none;
        -moz-appearance: none;
        margin: 0;
        -webkit-transition: all .35s ease-out;
        -moz-transition: all .35s ease-out;
        -o-transition: all .35s ease-out;
        transition: all .35s ease-out;
    }

        .MyGroupControls label:last-child {
            margin-right: 0;
        }

    /*#region MyGroupControls Round */
    .MyGroupControls.Round {
    }


        .MyGroupControls.Round label {
            border: 1px solid #7ABDE2;
            -webkit-border-radius: 16px;
            -moz-border-radius: 16px;
            border-radius: 16px;
            padding: 5px 1rem;
            margin-right: 15px;
        }



            .MyGroupControls.Round label:hover {
                background-color: #7ABDE2;
                color: #FFF;
                -webkit-box-shadow: 0 1px 4px 0 rgba(0,0,0,0.14);
                box-shadow: 0 1px 4px 0 rgba(0,0,0,0.14);
            }

        .MyGroupControls.Round input[type=radio]:checked + label {
            background-color: #7ABDE2;
            color: #FFF;
        }

@media only screen and (max-width: 29.9375em) {
    .MyGroupControls.Round label {
        margin-bottom: 10px;
    }
}

/*#endregion */

/*#region MyGroupControls RoundBullet */
.MyGroupControls.RoundBullet {
    font-size: 0;
    display: inline-block;
    vertical-align: middle;
}

    .MyGroupControls.RoundBullet label {
        font-size: 1rem;
        border: 1px solid #7ABDE2;
        padding: 5px 1rem;
        margin: 0;
        margin-right: -1px;
    }

        .MyGroupControls.RoundBullet label:nth-child(2) {
            -webkit-border-top-left-radius: 16px;
            -webkit-border-bottom-left-radius: 16px;
            -moz-border-radius-topleft: 16px;
            -moz-border-radius-bottomleft: 16px;
            border-top-left-radius: 16px;
            border-bottom-left-radius: 16px;
        }

        .MyGroupControls.RoundBullet label:last-child {
            -webkit-border-top-right-radius: 16px;
            -webkit-border-bottom-right-radius: 16px;
            -moz-border-radius-topright: 16px;
            -moz-border-radius-bottomright: 16px;
            border-top-right-radius: 16px;
            border-bottom-right-radius: 16px;
        }


        .MyGroupControls.RoundBullet label:hover {
            background-color: #7ABDE2;
            color: #FFF;
            -webkit-box-shadow: 0 1px 4px 0 rgba(0,0,0,0.14);
            box-shadow: 0 1px 4px 0 rgba(0,0,0,0.14);
        }

    .MyGroupControls.RoundBullet input[type=radio]:checked + label {
        background-color: #7ABDE2;
        color: #FFF;
    }
/*#endregion */

/*#region MyGroupControls ListBullet */
.MyGroupControls.ListBullet {
    font-size: 0;
    display: block;
    vertical-align: middle;
}

    .MyGroupControls.ListBullet label {
        font-size: 1rem;
        line-height: 1.75rem;
        color: #dbdada;
        border: 1px solid #d9d9d9;
        padding: 5px 1rem 5px calc(1rem + 12px );
        margin: 0;
        width: auto;
        margin-right: 0.25em;
        margin-bottom: 0.5em;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
        position: relative;
        transition: all 0.5s ease;
    }

        .MyGroupControls.ListBullet label:before {
            position: absolute;
            content: "";
            top: calc(50% - 6px);
            left: 6px;
            height: 12px;
            width: 12px;
            border-radius: 50%;
            transform: scale(1);
            transition: all 0.3s ease;
            background: #d9d9d9;
        }

        .MyGroupControls.ListBullet label:after {
            position: absolute;
            content: "";
            top: calc(50% - 6px);
            left: 6px;
            height: 12px;
            width: 12px;
            border-radius: 50%;
            transform: scale(0);
            transition: all 0.3s ease;
            background: #d9d9d9;
        }

        .MyGroupControls.ListBullet label:hover {
            background-color: #7ABDE2;
            color: #FFF;
            -webkit-box-shadow: 0 1px 4px 0 rgba(0,0,0,0.14);
            box-shadow: 0 1px 4px 0 rgba(0,0,0,0.14);
        }

    .MyGroupControls.ListBullet label.mb0 {
        margin-bottom:0;
    }
        .MyGroupControls.ListBullet input[type=radio]:checked + label {
        border-color: #7ABDE2;
        background-color: #7ABDE2;
        color: #FFF;
    }

        .MyGroupControls.ListBullet input[type=radio]:checked + label:before {
            background-color: #fff;
            transform: scale(1.5);
        }

        .MyGroupControls.ListBullet input[type=radio]:checked + label:after {
            background-color: #7ABDE2;
            transform: scale(1);
        }
/*#endregion */


/*#endregion */

/*-----------------MyChecks Setting-----------------*/
/*#region MyChecks Setting */
.MyChecks {
    vertical-align: -webkit-baseline-middle;
}

    .MyChecks input[type="checkbox"] {
        display: none;
    }

    .MyChecks label {
        margin: 0;
        font-size: 1.25rem;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        cursor: pointer;
    }

    .MyChecks input[type="checkbox"] + label:before {
        content: " ";
        font-size: 1.05rem;
        display: inline-block;
        width: 1.125rem;
        height: 1.125rem;
        border: 1px solid #CCC;
        margin-right: .5rem;
        vertical-align: text-bottom;
        -webkit-transition: all .35s ease-out;
        -moz-transition: all .35s ease-out;
        -o-transition: all .35s ease-out;
        transition: all .35s ease-out;
    }

    .MyChecks input[type="checkbox"]:checked + label:before {
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        font-family: "Font Awesome 5 Free";
        content: "\f00c";
        font-weight: 900;
        color: #FFF;
        background-color: #7ABDE2;
        border-color: #7ABDE2;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        line-height: 1.125rem;
    }
    /*#region MyChecks List */
    .MyChecks.List {
    }

        .MyChecks.List span {
            margin-right: .5em;
            margin-bottom: .25em;
            display: inline-block;
        }

        .MyChecks.List label {
            margin-right: .5rem;
        }
/*#endregion */

/*#endregion */

/*-----------------Card-----------------*/
/*#region Card */
.Card {
    -webkit-box-shadow: 0 1px 4px 0 rgba(0,0,0,0.14);
    box-shadow: 0 1px 4px 0 rgba(0,0,0,0.14);
}

    .Card.clickable {
        cursor: pointer;
        -webkit-transition: all .15s ease-out;
        -moz-transition: all .15s ease-out;
        -o-transition: all .15s ease-out;
        transition: all .15s ease-out;
    }

        .Card.clickable:hover {
            -webkit-box-shadow: 0 1px 4px 1px rgba(0,0,0,0.24);
            box-shadow: 0 1px 4px 1px rgba(0,0,0,0.24);
        }

/*#endregion */

/*-----------------QueryArea-----------------*/
/*#region QueryArea */
.QueryArea fieldset .Legend i {
    margin-right: .25em;
}
/*#endregion */
/*-----------------Fontawesome Extra Setting-----------------*/
/*#region Fontawesome Extra Setting */
.fa.fa-input, .fas.fa-input {
    font-family: "\5FAE\8EDF\6B63\9ED1\9AD4","Font Awesome 5 Free", Arial;
}

.fas.fa-input {
    font-weight: 900;
}
/*#endregion */
/*-----------------dialog-----------------*/
/*#region dialog */
/** {
    font-family: '微軟正黑體';
}*/
.ui-dialog-title {
    font-weight: bold;
    font-size: 1.25rem;
}

.ui-widget-content {
    border: 1px solid #51c2bc;
}
/*#endregion */
