﻿@charset "utf-8";
/*CSS Info ======================================================================
File Name: global.css
Editor: Sophia
Last Editor: Sophia
CreateDate:2010/11/26
LastDate: 2021/3/26
Version: 3.3
---------------------------
【 Table of Contents 】
	DIV XHTML頁面
	Free Style
	使用jQuery
	
	內容置中，100%寬度
    Responsive Design
    *--》Smaller than 960: Smaller than the standard base grid
    *--》Tablet Portrait: Between 768px and 959px
    *--》All Mobile Sizes: Less than 767px
    *--》Just Mobile Landscape: Between 480px and 767px
    *--》Just Mobile Portrait: Less than 479px

    -------------------Temp
    *--》超大螢幕：目標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";
/*===============================================================================
                                     全域設定
=================================================================================*/

/* #Basic Styles
================================================== */
/* Colors: */
/*:root {
    --GreenDark1: #00573D;
    --GreenDark2: #236C5C;
    --GreenDark3: #297D6B;
    --GreenDark4: #205C02;
    --GreenLight1: #3DC5A8;
    --GreenLight2: #B0E1D6;
    --GreenLight3: #DCEAE7;
    --GreenLight4: #EEF5F4;
    --GreenLight5: #51AB0D;
    --GrayLight1: #F4F4F4;
    --GrayLight2: #E7E7E7;
    --BlueDark1: #02595C;
    --BlueLight1: #0DABAB;
    --TextColor: #3E454C;
    --AQI1: #8EC641;
    --AQI2: #E9BB00;
    --AQI3: #FF7701;
    --AQI4: #DB0002;
    --AQI5: #99298C;
    --AQI6: #890020;
}*/

:root {
    --GreenDark1: #205C02;
    --GreenLight1: #51AB0D;
    --GrayLight1: #F4F4F4;
    --GrayLight2: #E7E7E7;
    --BlueDark1: #05A3B8;
    --BlueDark2: #066C7A;
    --BlueLight1: #0AC7E4;
    --BlueLight2: #E0F2F6;
    --PurpleDark1: #5A39C3;
    --PurpleLight1: #9680DA;
    --PurpleLight2: #D5CEEB;
    --TextColor: #3E454C;
    --AQI1: #8EC641;
    --AQI2: #E9BB00;
    --AQI3: #FF7701;
    --AQI4: #DB0002;
    --AQI5: #99298C;
    --AQI6: #890020;
}


body {
    font-family: "\5FAE\8EDF\6B63\9ED1\9AD4", Arial;
    color: var(--TextColor);
}

    body.Blank /*空白頁適用*/ {
        background: none;
        border-top: none;
    }

/* scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
    background: #DEDBDB;
    border-radius: 20px;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: #9BE7FA;
    border-radius: 20px;
}
    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #0AC7E4;
    }





/* #Typography
================================================== */
/*#region Typography */
/*h1 {
    font-size: 3em;*/ /*48px*/
/*line-height: 1.35em;
    margin-bottom: 14px;
}

h2 {
    font-size: 2.25em;*/ /*36px*/
/*line-height: 1.35em;
    margin-bottom: 10px;
}

h3 {
    font-size: 1.875em;*/ /*30px*/
/*line-height: 1.35em;
    margin-bottom: 8px;
}

h4 {
    font-size: 1.5em;*/ /*24px*/
/*line-height: 1.35em;
    margin-bottom: 4px;
}

h5 {
    font-size: 1.25em;*/ /*20px*/
/*line-height: 1.5em;
}

h6 {
    font-size: 1.125em;*/ /*18px*/
/*line-height: 1.3125em;
}

h1, h2, h3, h4, h5, h6 {*/
/*color: #000000;*/
/*}*/

a {
    text-decoration: none;
    color: #066C7A;
}

    a:hover {
        color: #3BB198;
        /*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 {
    padding: 0;
    display: block;
    height: auto;
}


/* 視覺化全版
    -----------------------------------*/
/*#region wrapper */
.wrapper {
    width: 1360px;
    margin: 0 auto;
    padding: 0;
}

@media only screen and (min-width: 1220px) and (max-width: 1379px) {
    .wrapper {
        width: 1200px;
    }
}

@media only screen and (min-width: 977px) and (max-width: 1219px) {
    .wrapper {
        width: 960px;
    }
}

@media only screen and (min-width: 768px) and (max-width:976px) {
    .wrapper {
        width: 752px;
    }
}
/*手機版*/
@media only screen and (max-width: 767px) {
    body {
        overflow-x: hidden;
    }

    .wrapper {
        width: 100%;
    }
}
/*#endregion */

/*-----------------Header-----------------*/
#Header {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

#mainMenu .navBar {
    background: var(--BlueDark1);
    padding: 0.3rem 1rem;
    box-sizing: border-box;
    border-bottom: none;
}

.navBar .logo {
    display: inline-block;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    /*background: #fff;*/
    vertical-align: top;
    box-sizing: border-box;
    margin: 5px 10px 5px 0;
}

    .navBar .logo img {
        height: 50px;
    }

.navBar h1 {
    display: inline-block;
    font-size: 1.8em;
    color: #fff;
    margin: 0;
}

    .navBar h1 span {
        display: block;
        font-weight: bold;
    }

        .navBar h1 span:first-child {
            font-size: 1rem;
            margin-bottom: 0.2rem;
        }

.navBar a {
    font-size: 1.2rem;
    font-weight: bold;
    position: absolute;
    right: calc( 1rem + 5px);
    top: calc( 0.5rem + 1px + 1%);
    background: #fff;
    color: var(--BlueDark1);
    border-radius: 6px;
    padding: 0.3rem 1rem;
}

    .navBar a:hover {
        color: var(--BlueDark2);
        background: var(--BlueLight2);
    }

    .navBar a span {
        font-weight: bold;
        margin-left: 0.5rem;
    }
/* -----------------定位查詢區----------------- */
.mapQueryArea {
    padding: 0.8rem;
    width: 400px;
    display: block;
    box-sizing: border-box;
    position: absolute;
}

.searchBox {
    display: flex;
    margin-bottom: 0.5rem;
}

    .searchBox label {
        position: absolute;
        top: 0;
        z-index: -9999;
        opacity: 0;
    }

    .searchBox input[type="search"] {
        border-radius: 50px;
        width: 100%;
        box-sizing: border-box;
        padding: 0 1rem;
        vertical-align: middle;
        box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
        margin: 0;
        border: none;
    }

    .searchBox.coordinate #longitude {
        margin-right: 0.5rem;
    }

.pinLocation {
    /*    width: 69%;*/
    width: calc(100% - 104px - 0.5rem);
    font-weight: bold;
    line-height: 38px;
    text-align: center;
    background: var(--BlueLight2);
    color: var(--TextColor);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
}



.myPosition .pinLocation {
    width: 100%;
    line-height: 38px;
}

.pinMap > .searchBtn {
    padding-left: 0.5rem;
    font-size: 1rem;
    line-height: 38px;
}


.searchBtn {
    color: #fff;
    border: none;
    background: var(--BlueDark1);
    border-radius: 5px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
    margin-left: 0.3rem;
    cursor: pointer;
}

    .searchBtn:hover {
        color: #fff;
        background: #066C7A;
    }

    .searchBtn i {
        font-size: 1.4rem;
        padding: 0.5rem;
        color: #fff;
    }

.pinMap .searchBtn i {
    font-size: 1.2rem;
    padding: 0.3rem;
    vertical-align: inherit;
}

span.btnText {
    border: 0;
    clip: rect(0,0,0,0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.itemBar.positionWay {
    display: flex;
}

.inputBtn {
    display: block;
    padding-right: 0.3rem;
    width: 33%;
}

    .inputBtn:last-child {
        padding-right: 0;
    }

    .inputBtn input[type="radio"] {
        display: none;
    }

        .inputBtn input[type="radio"] + label {
            display: block;
            width: 100%;
            background: #fff;
            color: var(--TextColor);
            cursor: pointer;
            border: none;
            border-radius: 6px;
            text-align: center;
            min-height: 2em;
            line-height: 2em;
            font-size: 0.9em;
            font-weight: bold;
            margin: 0;
            box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
        }

        .inputBtn input[type="radio"]:checked + label {
            background: var(--BlueDark1);
            color: #fff;
        }

        .inputBtn input[type="radio"] + label:hover {
            background: var(--BlueDark1);
            color: #fff;
            /*opacity: 0.9;*/
        }

        .inputBtn input[type="radio"]:checked + label:hover {
            background: var(--BlueDark1);
            color: #fff;
        }

/* -----------------地圖工具----------------- */
ul#myTools.on {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 999;
    padding: 0.8rem;
}

ul#myTools {
    position: absolute;
    top: 0;
    right: 400px;
    z-index: 999;
    padding: 0.8rem;
}

    ul#myTools li {
        position: relative;
    }

        ul#myTools li a {
            color: var(--BlueDark1);
            text-align: center;
            background-color: #fff;
            border-radius: 50px;
            -moz-border-radius: 50px;
            -webkit-border-radius: 50px;
            box-shadow: 0 3px 6px rgba(0,0,0,0.3);
            display: inline-block;
            margin-bottom: 0.8rem;
            transition: all .1s ease-in-out;
            -moz-transition: all .1s ease-in-out;
            -webkit-transition: all .1s ease-in-out;
        }

        ul#myTools li:first-child a {
            border-radius: 10px;
            margin-bottom: 2rem;
            color: #fff;
            background-color: var(--BlueDark1);
        }

        ul#myTools li a i {
            font-size: 1.5rem;
            line-height: 3rem;
            width: 3rem;
            height: 3rem;
        }

        ul#myTools li a.on,
        ul#myTools li .measureTool a.on:nth-child(1),
        ul#myTools li .measureTool a.on:nth-child(2) {
            background-color: var(--BlueDark1);
            color: #fff;
        }

        ul#myTools li a span {
            color: var(--BlueDark1);
            font-size: 1rem;
            font-weight: bold;
            text-align: center;
            background-color: var(--BlueLight2);
            border-radius: 8px;
            -moz-border-radius: 8px;
            -webkit-border-radius: 8px;
            width: 4rem;
            padding: 0.3rem 0.5rem;
            margin-left: -7rem;
            position: absolute;
            /*right: 4.2rem;*/
            bottom: 1.5rem;
            left: 50%;
            visibility: hidden;
            box-shadow: 0px 3px 6px #00000033;
        }

        ul#myTools li:first-child a span {
            bottom: 2.5rem;
            color: #fff;
            background: var(--BlueDark2);
            visibility: visible;
        }
        /*        ul#myTools li:nth-child(5) a span, ul#myTools li:nth-child(6) a span {
            bottom: 0.7rem;
        }*/

        ul#myTools li a:hover {
            background-color: var(--BlueLight2);
        }

        ul#myTools li:first-child a:hover {
            background: #05A3B8;
        }

        ul#myTools li a.on:hover {
            background-color: var(--BlueDark1);
            color: #ffffff;
        }

        ul#myTools li:first-child a.on:hover {
            color: #fff;
        }

        ul#myTools li:first-child a.on {
            background: var(--BlueDark1);
        }

        ul#myTools li a:hover span {
            visibility: visible;
        }

        /*測量工具*/
        ul#myTools li .measureTool {
            position: absolute;
            right: 60px;
            top: 50px;
            width: auto;
        }

            ul#myTools li .measureTool a {
                display: inline-block;
                margin-left: 0.4rem;
                position: relative;
            }

                ul#myTools li .measureTool a.reset {
                    border-radius: 6px;
                    font-size: 1.1rem;
                    font-weight: bold;
                    line-height: 2rem;
                    width: 3rem;
                    height: 2rem;
                }

                ul#myTools li .measureTool a span {
                    bottom: 0.5rem;
                }


/* -----------------地圖工具小卡----------------- */
.Card {
    background: #fff;
    width: 400px;
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
    height: calc(var(--vh, 1vh) * 100 - 66px);
    box-shadow: -2px 0px 4px rgba(0, 0, 0, 0.2);
    transition: 0.5s;
}

.cardHead, .cardContainer {
    padding: .75rem;
}

.cardContainer {
    background: #fff;
    height: calc(var(--vh, 1vh) * 100 - 146px);
    overflow-y: auto;
}

.cardArea {
    padding-bottom: .5rem;
}

.cardFooter {
    text-align: center;
    border-top: 1px solid #8D8171;
    padding-top: .5rem;
}

.Card .close, .close.infoBtn, .hintArea .close {
    /*color: var(--GreenLight1);
    font-size: 1.4rem;*/
    display: flex;
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    z-index: 9999;
    cursor: pointer;
    margin-right: 0;
}

/*    .Card .close:hover {
        color: var(--GreenDark3);
    }*/

/*.itemCard .close {
    color: var(--GreenDark3);
}

    .itemCard .close:hover {
        color: var(--GreenDark2);
    }*/

/* Card detail */
ul.items {
    padding-right: 2rem;
}

.items li {
    font-size: 1.125rem;
    padding: .25rem .2rem;
    display: inline-block;
}

    .items li a {
        color: #DEECC0;
        border: 1px solid rgba(255, 255, 255, 0);
        border-radius: 3px;
        padding: .155rem .55rem;
    }

        .items li a:hover {
            border: 1px solid #DEECC0;
        }

    .items li.mark a {
        color: #5C6349;
        background: #CBE2A7;
    }

        .items li.mark a:hover {
            cursor: default;
        }

.cardArea table th {
    color: #fff;
    font-size: 1.125rem;
    font-weight: normal;
    text-align: left;
    width: auto;
}

.cardArea input[type=radio], .cardArea input[type=checkbox] {
    background: #DEECC0;
    border: none;
    outline: none;
    width: 18px;
    height: 18px;
    position: relative;
    transition: all .3s ease-in-out;
}

.mapFuncTitle {
    font-size: 1.4rem;
    vertical-align: text-bottom;
    font-weight: bold;
    color: var(--BlueDark1);
}

    .mapFuncTitle i {
        font-size: 1rem;
        padding: 0.4rem;
        vertical-align: text-top;
    }

/*底圖切換*/
#mapChange .itemBar {
    display: flex;
}

    #mapChange .itemBar .item {
        width: 33%;
        margin-right: 0.5rem;
        text-align: center;
    }

        #mapChange .itemBar .item:last-child {
            margin-right: 0;
        }

#mapChange .imgBox {
    display: inline-block;
    border-radius: 10px;
    overflow: hidden;
    width: 70%;
    margin-bottom: 0.5rem;
    opacity: 0.6;
    border: 6px solid transparent;
}

    #mapChange .imgBox img {
        width: 100%;
    }

#mapChange .itemBar .item:hover .imgBox, #mapChange .itemBar .item.select .imgBox {
    border: 6px solid var(--BlueLight1);
    opacity: 1;
}

#mapChange .itemBar .item:hover .item > p, #mapChange .itemBar .item.select > p {
    font-weight: bold;
}

/*圖層套疊*/
.itemsTitle {
    color: var(--BlueDark1);
    font-size: 1.125rem;
    margin: 0.8rem 0.5rem 0 .5rem;
}

    .itemsTitle:first-child {
        margin-top: 0;
    }

    .itemsTitle.legend i.on, .itemsTitle.type1 i.on, .itemsTitle.type2 i.on, .itemsTitle.landUsed i.on, .filterContent .itemBar:nth-child(5) .subTitle i.on {
        -moz-transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .itemsTitle:hover, .itemsTitle.mark {
        color: #0AC7E4;
        cursor: pointer;
    }

    .itemsTitle p {
        font-weight: 100;
        line-height: 1.125rem;
        display: inline-block;
        padding-right: .25rem;
        font-weight: bold;
    }

.cardArea {
    padding-top: 0;
    margin: .5rem 0 1.5rem 1rem;
}

    .cardArea > div {
        display: inline-flex;
        align-content: flex-start;
        flex-wrap: wrap;
        align-items: center;
        width: 100%;
        margin-top: .5rem;
    }

    .cardArea.type1 > div:nth-child(3) {
        border-top: 1px solid #C8EEF7;
        padding-top: 8px;
    }

    .cardArea > div input {
        margin: 0 0.5em;
    }

        .cardArea > div input + label {
            color: #141A26;
        }

    .cardArea p, .cardArea span {
        line-height: 2rem;
        padding-left: .35rem;
        position: relative;
        color: #141A26;
    }

        .cardArea p:before {
            content: "";
            background: #fff;
            position: absolute;
            top: 0;
            left: 0;
        }

        .cardArea span::after {
            content: "";
            background: #fff;
            position: absolute;
            top: 0;
            right: 0;
        }

        .cardArea p.square, .cardArea p.circle, .cardArea p.rectangle, .cardArea p.triangle {
            padding-left: 2.25rem;
        }

        .cardArea span.square, .cardArea span.circle, .cardArea span.rectangle, .cardArea span.triangle {
            padding-right: .6rem;
        }

/* legend icons */

.legend img {
    width: 26px;
    height: 26px;
    padding-left: .5rem
}

    .legend img.tempLegend {
        width: 100%;
        height: 100%;
    }

.legend .cardArea {
    height: 300px;
    overflow: auto;
}

.legendBar {
    display: flex;
}

p.square:before, span.square:after {
    width: 22px;
    height: 22px;
    top: 4px;
    left: 2px;
}

span.square:after {
    left: 100%;
}

p.rectangle:before, span.rectangle:after {
    width: 28px;
    height: 18px;
    top: 7px;
}

span.rectangle:after {
    left: 100%;
}

p.circle:before, span.circle:after {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    top: 2px;
}

span.circle:after {
    left: 100%;
}

p.triangle:before, span.triangle:after {
    width: 0;
    height: 0;
    background: none;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-bottom: 21px solid #fff;
    top: 5px;
}

span.triangle:after {
    left: 100%;
}


@media only screen and (min-width: 1220px) and (max-width: 1379px) {
    #Content {
        position: relative;
        height: calc(100vh - 60px);
        overflow: hidden;
    }

    .navBar h1 {
        font-size: 1.1em;
    }

        .navBar h1 span:first-child {
            font-size: 0.8rem;
        }

    .navBar .logo {
        height: 34px;
        width: 34px;
        margin: 5px 10px 5px 0;
    }

        .navBar .logo img {
            height: 34px;
        }

    .navBar a {
        font-size: 0.9rem;
        top: calc( 0.5rem + 0.5%);
    }

    .Card {
        height: calc(var(--vh, 1vh) * 100 - 53px);
    }

    .cardContainer {
        height: calc(var(--vh, 1vh) * 100 - 130px);
    }
}

@media only screen and (min-width: 977px) and (max-width: 1219px) {
    ul#myTools > li:nth-child(5), ul#myTools > li:nth-child(6), ul#myTools > li:nth-child(7) {
        display: none;
    }

    ul#myTools li a.on:hover {
        color: #fff;
    }
}

@media only screen and (min-width: 768px) and (max-width:976px) {
    /*-----------------Header-----------------*/
    #mainMenu .navBar {
        padding: 0.5rem;
    }

    .navBar .logo {
        height: 40px;
        width: 40px;
        background: #fff;
        margin: 5px;
    }

        .navBar .logo img {
            height: 40px;
        }

    .navBar h1 {
        font-size: 1.4em;
    }

        .navBar h1 span:first-child {
            font-size: 1rem;
            margin-bottom: 0.2rem;
        }

    .navBar a {
        font-size: 1rem;
        right: 1rem;
        top: calc( 0.5rem + 0.5%);
        padding: 0.5rem;
    }

        .navBar a span {
            display: none;
        }
    /* -----------------地圖工具----------------- */

    ul#myTools.on {
        display: block;
        text-align: right;
        flex-direction: row-reverse;
        padding: 0.5rem;
        position: absolute;
        right: 0;
    }

    ul#myTools li a.on:hover {
        color: #fff;
    }

    ul#myTools {
        display: block;
        text-align: right;
        flex-direction: row-reverse;
        padding: 0.5rem;
        position: absolute;
        right: 0;
    }


        ul#myTools li a i {
            font-size: 1.5rem;
            line-height: 3rem;
            width: 3rem;
            height: 3rem;
        }

        ul#myTools li a:hover, #myTools ul li a.on:hover {
            background-color: var(--BlueDark1);
            color: #fff;
        }

        ul#myTools li a span, ul#myTools > li:nth-child(1), ul#myTools > li:nth-child(5), ul#myTools > li:nth-child(6), ul#myTools > li:nth-child(7) {
            display: none;
        }

    /* -----------------地圖工具小卡----------------- */
    .Card {
        width: 100%;
        position: absolute;
        top: unset;
        bottom: -4px;
        right: unset;
        border-radius: unset;
        box-shadow: unset;
        overflow: unset;
        height: calc(var(--vh, 1vh) * 100 - 287px);
    }

    .cardHead, .cardContainer {
        padding: .75rem;
    }

    .cardContainer {
        height: calc(var(--vh, 1vh) * 100 - 345px);
    }

    .myInfo .close.infoBtn {
        display: none;
    }

    .legend .cardArea {
        height: unset;
        overflow: unset;
    }
}

@media only screen and (max-width: 767px) {
    /*-----------------Header-----------------*/
    #mainMenu .navBar {
        padding: 0.5rem;
        display: flex;
        align-items: start;
    }

    .navBar .logo {
        height: 40px;
        width: 40px;
        background: #fff;
        margin: 5px;
        /*margin-top: 0;*/
    }

        .navBar .logo img {
            height: 40px;
        }

    .navBar h1 {
        font-size: 1.4em;
    }

        .navBar h1 span:first-child {
            font-size: 1rem;
            margin-bottom: 0.2rem;
        }

    .navBar a {
        font-size: 1rem;
        right: calc( 0.5rem);
        padding: 0.5rem;
    }

        .navBar a span {
            display: none;
        }

    /* -----------------定位查詢區----------------- */
    .mapQueryArea {
        padding: 0.5rem;
        width: 100%;
        position: relative;
    }

    .searchBox {
        margin-bottom: 0.5rem;
    }

    /* -----------------地圖工具----------------- */
    ul#myTools.on {
        display: flex;
        text-align: right;
        flex-direction: row-reverse;
        padding: 0 0.5rem;
        position: unset;
    }

    ul#myTools li a.on:hover {
        color: #fff;
    }

    ul#myTools {
        display: flex;
        text-align: right;
        flex-direction: row-reverse;
        padding: 0 0.5rem;
        position: unset;
    }

        ul#myTools li a {
            margin-left: 0.5rem;
        }

            ul#myTools li a i {
                font-size: 1rem;
                line-height: 2rem;
                width: 2rem;
                height: 2rem;
            }

            ul#myTools li a:hover, #myTools ul li a.on:hover {
                background-color: var(--BlueDark1);
                color: #fff;
            }

            ul#myTools li a span, ul#myTools > li:nth-child(1), ul#myTools > li:nth-child(5), ul#myTools > li:nth-child(6), ul#myTools > li:nth-child(7) {
                display: none;
            }

    /* -----------------地圖工具小卡----------------- */
    .Card {
        width: 100%;
        position: relative;
        top: unset;
        right: unset;
        border-radius: unset;
        box-shadow: unset;
        overflow: unset;
    }

    .cardHead, .cardContainer {
        padding: .75rem;
    }

    .cardContainer {
        height: calc(var(--vh, 1vh) * 100 - 274px);
    }

    .myInfo .close.infoBtn {
        display: none;
    }

    .legend .cardArea {
        height: unset;
        overflow: unset;
    }

    /*底圖切換*/

    /*圖層套疊*/
}

@media only screen and (max-width: 448px) {
    /*.navBar h1 {
        font-size: 1.1em;
    }

        .navBar h1 span:first-child {
            font-size: .875rem;
            margin-bottom: 0.2rem;
        }*/
}

@media only screen and (max-width: 370px) {
    /*.navBar h1 {
        font-size: .95em;
    }

        .navBar h1 span:first-child {
            font-size: .7rem;
            margin-bottom: 0.2rem;
        }

    .navBar .logo {
        width: 35px;
        height: 35px;
        margin-bottom: 0;
    }

        .navBar .logo img {
            height: 35px;
        }*/
}


/*-----------------Content-----------------*/
#Content {
    position: relative;
    height: calc(100vh - 70px);
    overflow: hidden;
}

@media only screen and (min-width: 1220px) and (max-width: 1379px) {
    #Content {
        height: calc(100vh - 54px);
    }
}

@media only screen and (min-width: 768px) and (max-width:976px) {
}

@media only screen and (max-width: 767px) {
    #Content {
        position: relative;
        height: calc(var(--vh, 1vh) * 100 - 66px);
    }
}


/*===============================================================================
                         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"], input[type="number"], textarea {
        min-height: 2em;
        line-height: 2em;
    }

    select, input[type="text"], input[type="search"], input[type="number"], input[type="password"] {
        line-height: 2em;
        font-size: 1.1em;
        background: #fff;
        color: var(--TextColor);
        border: 1px solid #ced4da;
        border-radius: 0.25rem;
        padding: 0 0.5rem;
        margin: 0 0.2rem;
        text-align: left;
        -moz-box-sizing: content-box;
        -webkit-box-sizing: content-box;
        box-sizing: content-box;
        vertical-align: top;
    }

        select:hover, input[type="text"]:hover, input[type="search"]:hover, input[type="password"]:hover, input[type="number"]:hover, button:hover, textarea:hover {
            /*background: var(--GreenLight3);*/
        }

        select:focus, input[type="text"]:focus, input[type="search"]:focus, input[type="password"]:focus, input[type="number"]:focus, textarea:focus {
            /*background: var(--GreenLight3);
            border: .5px solid var(--GreenDark3);*/
        }

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, select {
    height: 2em;
}

.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;
}

/*=========================================================================
     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 */
