@charset "utf-8";
/*底圖切換*/
.BasicMapTable {
    width: 100%;
    margin-top: 10px;
}

    .BasicMapTable td {
        font-family: "微軟正黑體";
        font-size: 1em;
        color: #494949;
        padding-top: 12px;
        padding-right: 8px;
        padding-bottom: 12px;
        padding-left: 40px;
        border-bottom: 1px solid #fff;
        background-color: #eee;
        transition: background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }

        .BasicMapTable td:hover {
            font-family: "微軟正黑體";
            font-size: 1em;
            color: #fff;
            background-color: #494949;
            cursor: pointer;
        }

        .BasicMapTable td a {
            color: #494949;
            text-decoration: none;
        }

        .BasicMapTable td.active {
            font-family: "微軟正黑體";
            font-size: 1em;
            font-weight: 600;
            color: #1E56A0;
            cursor: pointer;
            background-image: url(../images/BasicMap_checked.svg);
            background-repeat: no-repeat;
            background-position: 10px center;
            background-size: 21px auto;
            background-color: #BBE1FA;
            border-bottom: 1px solid #FFF;
        }
/*底圖切換結尾*/

/*量測*/
.MeasureStyle {
}

    .MeasureStyle > dl {
        display: block;
        overflow: hidden;
        font-family: "微軟正黑體";
        font-size: 1em;
        line-height: 2.5;
        color: #000;
		margin-bottom: 10px;
		padding-bottom: 10px;
		border-bottom: 1px dashed #b5b5b5;
    }

        .MeasureStyle > dl > dt {
            display: inline-block;
            float: left;
        }

            .MeasureStyle > dl > dt > i {
                display: inline-block;
                width: 6px;
                height: 6px;
                background-color: #e4e4e4;
                margin-right: 6px;
                vertical-align: middle;
            }

        .MeasureStyle > dl > dd {
            display: inline-block;
            float: left;
        }
/*量測結尾*/

/*定位*/
.LocateStyle {
}

    .LocateStyle > p {
        font-family: "微軟正黑體";
        font-size: 1.2em;
        line-height: 2.5;
        color: #2ca6e0;
        font-weight: 600;
    }

    .LocateStyle > dl {
        display: block;
        overflow: hidden;
        font-family: "微軟正黑體";
        font-size: 1em;
        line-height: 2.5;
        color: #000;
        margin-bottom: 10px;
    }

        .LocateStyle > dl > dt {
            display: block;
            line-height: 0.9;
        }

            .LocateStyle > dl > dt > i {
                display: inline-block;
                width: 6px;
                height: 6px;
                background-color: #e4e4e4;
                margin-right: 6px;
                vertical-align: middle;
            }

        .LocateStyle > dl > dd {
            display: block;
            padding-left: 6px;
        }

            .LocateStyle > dl > dd > input {
                line-height: 1;
            }

.WGS84-input {
    width: 80%;
    margin-right: 4px;
}
/*定位結尾*/

.LayerMemo {
    width: 20px;
    cursor: pointer;
    margin-left: 4px;
}

/*圖層套疊*/
.Tree-menu {
    font-size: 1em;
    overflow: hidden;
}

    .Tree-menu input.switch[type=checkbox] {
        display: none;
    }

    .Tree-menu ul {
        margin: 0 0 0 0px;
        /*display: none;*/
        position: relative;
    }

        .Tree-menu ul:before {
            content: "";
            position: absolute;
            top: -12px;
            bottom: 12px;
            border-left: 1px #EEE solid;
            left: -30px;
        }

    .Tree-menu label {
        cursor: pointer;
    }

    .Tree-menu input[type=checkbox]:checked.switch ~ ul {
        display: block;
    }

    .Tree-menu input[type=checkbox]:checked.switch ~ label {
        color: #585858;
        display: inline;
    }

    .Tree-menu li {
        list-style: none;
        position: relative;
    }

        .Tree-menu li:before {
            content: "";
            position: absolute;
            width: 25px;
            border-bottom: 1px #EEE solid;
            z-index: -1;
            left: -30px;
            top: 12px;
        }

    .Tree-menu > li {
        margin-left: 0px;
        color: #000;
        font-weight: 600;
        display: flex;
        flex-wrap: wrap;
        padding: 4px 0 0 0;
        border-top: 1px solid #d2d2d2;
    }

        .Tree-menu > li:first-child {
            border-top: 0px solid #d2d2d2;
        }

        .Tree-menu > li > span:first-child {
            width: 18px;
        }

        .Tree-menu > li > span:nth-child(2) {
            width: calc(100% - 84px);
            line-height: 1.5;
            padding-left: 4px;
        }

        .Tree-menu > li > span:last-child {
            width: 62px;
        }

        .Tree-menu > li > span:first-child > img {
            width: 100%;
            height: auto;
            vertical-align: text-top;
            margin-right: 4px;
        }

        .Tree-menu > li a:visited {
            color: #000;
        }

    .Tree-menu input.switch[type=checkbox]:checked ~ i {
        width: 20px;
        height: 30px;
        display: inline-block;
        margin-right: 4px;
        background-image: url("../images/icon-folder-minus.svg");
        background-size: 100% auto;
        background-position: left center;
        background-repeat: no-repeat;
        vertical-align: bottom;
    }

    .Tree-menu input.switch[type=checkbox] ~ i {
        width: 20px;
        height: 30px;
        display: inline-block;
        margin-right: 4px;
        background-image: url("../images/icon-folder-plus.svg");
        background-size: 100% auto;
        background-position: left center;
        background-repeat: no-repeat;
        vertical-align: bottom;
        cursor: pointer;
    }

/*有子項的li樣式*/
.Tree-menu-second {
    display: contents !important;
}

    .Tree-menu-second > div {
        display: flex;
        flex-wrap: nowrap;
        border-top: 1px solid #d2d2d2;
    }

        .Tree-menu-second > div > span:first-child {
            width: 20px;
        }

        .Tree-menu-second > div > span:nth-child(2) {
            width: calc(100% - 84px);
            padding-left: 4px;
        }

        .Tree-menu-second > div > span:last-child {
            width: 62px;
        }


    .Tree-menu-second > ul {
        display: none;
    }

        .Tree-menu-second > ul.active {
            display: block;
        }

.Tree-menu-ul > li {
    margin-left: 0px;
    color: #585858;
    display: flex;
    flex-wrap: nowrap;
    padding: 4px 0 0 0;
}

    .Tree-menu-ul > li > span:first-child {
        width: 18px;
    }

    .Tree-menu-ul > li > span:nth-child(2) {
        width: calc(100% - 84px);
        line-height: 1.5;
        padding-left: 4px;
    }

    .Tree-menu-ul > li > span:last-child {
        width: 62px;
    }

    .Tree-menu-ul > li > span:first-child > img {
        width: 100%;
        height: auto;
        vertical-align: text-top;
    }

/*有子項的li樣式結尾*/

/*.Tree-menu > li > ul > li .treee-open {
            width: 10px;
            height: 30px;
            display: inline-block;
            margin-right: 4px;
            background-image: url("../images/icon-folder-minus-s.svg");
            background-size: 100% auto;
            background-position: left center;
            background-repeat: no-repeat;
            vertical-align: bottom;
        }

        .Tree-menu > li > ul > li .treee-close {
            width: 10px;
            height: 30px;
            display: inline-block;
            margin-right: 4px;
            background-image: url("../images/icon-folder-plus-s.svg");
            background-size: 100% auto;
            background-position: left center;
            background-repeat: no-repeat;
            vertical-align: bottom;
        }*/
/*圖層套疊結尾*/

/*圖台標示*/
/*圖台標示結尾*/

/*查詢*/
/*查詢結尾*/

/*匯出*/
.ImageCaptureStyle {
}

    .ImageCaptureStyle > dl {
        display: block;
        overflow: hidden;
        font-family: "微軟正黑體";
        font-size: 1em;
        line-height: 2.5;
        color: #000;
        margin-bottom: 10px;
		padding-bottom: 10px;
		border-bottom: 1px dashed #b5b5b5;
    }

        .ImageCaptureStyle > dl > dt {
            display: block;
            line-height: 0.9;
        }

            .ImageCaptureStyle > dl > dt > i {
                display: inline-block;
                width: 6px;
                height: 6px;
                background-color: #e4e4e4;
                margin-right: 6px;
                vertical-align: middle;
            }

        .ImageCaptureStyle > dl > dd {
            display: block;
            padding-left: 6px;
        }

            .ImageCaptureStyle > dl > dd > input {
                line-height: 1;vertical-align: sub;
            }

.setting-size {
    display: block;
}

    .setting-size > input {
        line-height: 1;
    }
/*匯出結尾*/

/*tab*/
.GSMap-element-tab {
    border-bottom: 1px solid #2ca6e0;
    overflow: hidden;
    /*margin: 6px;*/
    margin-top: 30px;
	flex-wrap: nowrap;
}

    .GSMap-element-tab > li {
        float: left;
        margin-bottom: -1px;
    }

        .GSMap-element-tab > li > a {
            margin-right: 2px;
            border: 0px solid transparent;
            border-radius: 0 0 0 0;
            color: #2ca6e0;
            font-family: "微軟正黑體";
            font-size: 1em;
            line-height: 1.5;
            font-weight: 600;
            display: block;
            padding: 6px 2px;
        }

            .GSMap-element-tab > li > a:hover {
                background-color: #e7f1ff;
                color: #1E56A0;
                display: block;
                text-decoration: none;
            }

            .GSMap-element-tab > li > a:active {
                color: #1E56A0;
                text-decoration: none;
            }

    .GSMap-element-tab .nav-item.show .nav-link, .GSMap-element-tab .nav-link.active {
        color: #FFF;
        background-color: #1E56A0;
        border-color: #dee2e6 #dee2e6 #fff;
    }

    .GSMap-element-tab > li.active > a, .GSMap-element-tab > li.active > a:hover, .GSMap-element-tab > li.active > a:focus {
        color: #FFF;
        cursor: default;
        background-color: #2ca6e0;
        border: 0px solid #2ca6e0;
        border-bottom-color: transparent;
    }
/*tab結尾*/

/*collapse*/
.GSMap-element-card {
    background-color: #e7f1ff;
    border: 0px;
    border-bottom: 1px solid #b7b7b7;
    border-radius: 0;
}

    .GSMap-element-card:last-child {
        border-bottom: 0px solid #b7b7b7;
    }

.GSMap-element-card-header {
    padding: 0.5em;
    margin-bottom: 0;
    /*background-color: #f3f3f3;*/
    border-bottom: 0px solid rgba(0, 0, 0, 0.125);
}

    .GSMap-element-card-header.gsCollapsed {
        background-color: #f3f3f3;
    }

    .GSMap-element-card-header:first-child {
        border-radius: 0;
    }

    .GSMap-element-card-header > a {
        font-family: "微軟正黑體";
        font-size: 1em;
        line-height: 1.5;
        font-weight: 600;
        color: #000;
    }

        .GSMap-element-card-header > a:before {
            content: "";
            background: url("../images/icon_minus.png");
            background-position: left top;
            background-repeat: no-repeat;
            background-size: 80%;
            display: inline-block;
            width: 25px;
            height: 25px;
            vertical-align: middle;
        }

        .GSMap-element-card-header > a.collapsed:before {
            content: "";
            background: url("../images/icon_plus.png");
            background-position: left top;
            background-repeat: no-repeat;
            background-size: 80%;
            display: inline-block;
            width: 25px;
            height: 25px;
            vertical-align: middle;
        }

.GSMap-element-card-cont {
    padding: 10px 6px;
}
/*collapse結尾*/

/*泡泡視窗*/
.GSMap-element-popup-detail-wrap {
    width: 350px;
    min-height: 20vh;
    max-height: 40vh;
    background-color: #fff;
    border: 1px solid #eee;
    padding: 6px;
    border-radius: 6px;
}

    .GSMap-element-popup-detail-wrap > dl {
        display: block;
        margin: 12px 6px;
        overflow: hidden;
    }

        .GSMap-element-popup-detail-wrap > dl > dt {
            font-size: 0.8em;
            line-height: 1;
            font-weight: 400;
            font-family: "微軟正黑體";
            color: #2ca6e0;
            display: inline-block;
            float: left;
        }

        .GSMap-element-popup-detail-wrap > dl > dd {
            font-size: 0.8em;
            line-height: 1;
            font-weight: 400;
            font-family: "微軟正黑體";
            color: #000;
            display: inline-block;
            float: left;
        }

.gs-content {
    margin: 12px 6px;
    overflow: auto;
    width: 100%;
    max-height: calc(40vh - 51px);
}

    .gs-content .gs-content-title {
        font-size: 1.2em;
        font-weight: 600;
        font-family: "微軟正黑體";
        color: #2ca6e0;
    }

    .gs-content .gs-content-feature {
        margin-left: 6px;
        font-size: 0.8em;
        font-weight: 400;
        font-family: "微軟正黑體";
        color: #000;
    }

        .gs-content .gs-content-feature table::after {
            margin-bottom: 6px;
        }

        .gs-content .gs-content-feature table td {
            margin-left: 6px;
        }
/*泡泡視窗結尾*/

/*GPS定位*/
.btn_GPS_circle {
    background-image: url(../images/btn_gps.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 15px;
    border-radius: 4px;
    border: 2px solid #FFF;
    height: 36px;
    width: 36px;
    text-indent: -9999px;
    background-color: rgba(0,110,255,.7);
    position: absolute;
    right: 10px;
    top: 80px;
    z-index: 999;
}

    .btn_GPS_circle:hover {
        background-color: #27403d;
        color: #ffffff;
        border-radius: 999em
    }

    .btn_GPS_circle:active {
        position: relative;
        top: 1px;
    }

@media (max-width: 768px) {
    .btn_GPS_circle {
        position: absolute;
        right: 10px;
        top: 10px;
        z-index: 999;
    }
}
/*GPS定位結尾*/

/*右側已套疊圖層div樣式*/
.labelLegend {
    display: block;
    position: absolute;
    background-color: rgba(255, 255, 255, 1);
    right: 120px;
    top: 0px;
    border: 2px solid rgba(255,255,255,.4);
    padding: 4px;
    border-radius: 6px;
	width: 160px;
}

.labelLegend-inner{
	max-height: 460px;
	overflow-y: auto;
}
	.labelLegend-inner::-webkit-scrollbar {
		width: 5px;
		height: 8px;
		background-color: #b3b3b3; /* or add it to the track */
		border-radius: 999em;
	}
	.labelLegend-inner::-webkit-scrollbar-thumb {
		background: #3d4446;
		border-radius: 999em;
	}

.labelLegend-title{
	-webkit-border-top-left-radius: 4px;
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright: 4px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	background-color: #1e56a0;
	color: #FFF;
	font-size: 1em;
	line-height: 2;
	padding: 0 4px;
	position: relative;
    cursor:pointer;
}
.labelLegend-title:hover{
	background-color: #000;
}
.labelLegend-title:after{
	content: "";
    display: block;
    position: absolute;
    width: 13px;
    height: 100%;
    right: 4px;
    top: 0;
    background-image: url("../images/btn_arrow_down.svg");
    background-repeat: no-repeat;
    background-position: center;
}
    .labelLegend-title.close:after {
        content: "";
        display: block;
        position: absolute;
        width: 13px;
        height: 100%;
        right: 4px;
        top: 0;
        background-image: url("../images/btn_arrow_up.svg");
        background-repeat: no-repeat;
        background-position: center;
    }
.labelLegend-item{
	padding: 2px;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid #d2d2d2;
    margin: 2px;
	cursor: pointer;
	display: flex;
}
	.labelLegend-item:hover{
		border: 2px solid #3d4446;
	}
	.labelLegend-item >span:first-child{
		width: 15px;
        margin-top: 7px;
	}
	.labelLegend-item >span:nth-child(2){
		width: 20px;
	}
    .labelLegend-item > span:nth-child(2) img.icon {
        max-width: 20px;
        max-height: 30px;
    }
	.labelLegend-item >span:last-child{
		width: calc(100% - 35px);
	}
.labelLegend-item-txt{
	font-size: 14px;
	font-weight: 600;
	color: #000;
}
.labelLegend-item-txt >img{
	width: 100%;
	height: auto;
}
/*右側已套疊圖層div樣式結尾*/

/*圖層透明度slider bar樣式*/
.ui-slider-horizontal {
    height: 0.7em!important;
}
.ui-widget.ui-widget-content {
    border: 2px solid #c5c5c5!important;
    border-radius: 999em;
}
.ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: .7em;
    display: block;
    border: 0;
    background-position: 0 0;
    border-radius: 999em;
}
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus, .ui-button:hover, .ui-button:focus {
    border: 1px solid #ccc;
    background: #1e56a0;
    font-weight: normal;
    color: #2b2b2b;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    border: 2px solid #e5e5e5!important;
    background: #1e56a0!important;
    font-weight: normal;
    color: #454545;
}
.ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 1.1em!important;
    height: 1.1em!important;
    cursor: default;
    -ms-touch-action: none;
    touch-action: none;
    border-radius: 999em;
}

/*圖層透明度slider bar樣式結尾*/

.icon_removeable{
  	position: relative;
    margin: 7px 4px 2px 0px;
    display: inline-block;
}

.icon_removeable > i {
  	display: inline-block;
  	position: absolute;
  	top: -8px;
  	right: -5px;
  	z-index:9999;
  	cursor:pointer;
  	background-color: #5aa4e1;
	border-radius: 999em;
	color: #fff;
	font-size: 0.8em;
	padding: 2px 4px;
}

.icon_removeable > i ::before {
  font-size: 20px;
  color: #ff0000;
}

/*圖徵播放UI*/
.pin_play_wrap {
    position: absolute;
    right: 50px;
    z-index: 9999;
    width: calc(100vw - 438px);
    background-color: rgba(0,0,0,.5);
    border-radius: 8px;
    display: flex;
    padding: 10px;
    top: 0 !important;
}

    .pin_play_wrap .page {
        width: calc(100% - 40px);
        /*text-align: center;*/
    }

.pin_play {
}

.pin_play_range__input {
    -webkit-appearance: none;
    margin: 0;
    width: 100%;
    background-color: #1E56A0;
    border: 0px;
    height: 43px;
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
    outline: none;
}

.pin_play_range__input:focus {
  outline: none;
}

    .pin_play_range__input:focus .pin_play_range__input::-webkit-slider-runnable-track,
    .pin_play_range__input::-webkit-slider-runnable-track {
        width: 100%;
        height: 4px;
        cursor: pointer;
        animate: 0.2s;
        box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
        /* 不出現白底 */
        background: rgb(24, 69, 128);
        border-radius: 0;
        border: 0px solid #000101;
    }

.pin_play_range__input::-webkit-slider-thumb {
  border: 0px solid #000000;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
  background: white;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -0.40em;
  margin-left: 0em;
}

.pin_play_range__input:focus::-webkit-slider-runnable-track {
  background: rgba(0, 0, 0, 0.2);
}

.range__list {
  display: flex;
  justify-content: space-between;
  height: auto;
  overflow: hidden;
	margin-left: -10px;
}

.range__list option {
  /*content: attr(value);*/
  font-size: 0.9em;
  color: #FFF;
  display: block;
}

    .range__list option:nth-child(2) {
        /*content: attr(value);*/
        font-size: 0.9em;
        font-weight:bold;
        color: #0FF;
        display: block;
    }

[data-range-step] {
  transition: all 0.6s ease;
}

[data-range-step]:not(.active) {
  overflow: hidden;
  height: 0;
  opacity: 0;
}
/*圖徵播放UI結尾*/

/*保護區警示UI*/
.protect-alert-btn {
    width: 70px;
    display: inline-block;
    position: absolute;
    right: 0px;
    top: 0;
    background-color: #EC407A;
    z-index: 999;
    border-radius: 4px;
    text-align: center;
    color: #FFF !important;
    line-height: 1.2 !important;
    font-size: 0.9em !important;
    padding: 4px 0;
}

    .protect-alert-btn > i {
        display: block;
        color: #FFF;
    }

.protect-alert-txt-box {
    background-color: rgba(0,0,0,.5);
    position: absolute;
    right: 0px;
    top: 0;
    z-index: 999;
    color: #FFF !important;
    font-size: 0.9em !important;
    padding: 4px;
    width: 300px;
    height: 58px;
}

.protect-alert-txt-box-detail {
    background-color: rgba(0,0,0,.8);
    position: absolute;
    right: 0px;
    top: 60px;
    z-index: 999;
    color: #FFF !important;
    font-size: 0.9em !important;
    padding: 4px;
    width: 300px;
}

    .protect-alert-txt-box-detail > div {
        display: flex;
        align-items: center;
        column-gap: 6px;
    }

        .protect-alert-txt-box > .close, .protect-alert-txt-box-detail > div > .close {
            float: right;
            width: 30px;
            height: 30px;
            background-image: url("../images/btn_cancel.svg");
            background-size: 10px auto;
            background-position: center;
            background-repeat: no-repeat;
        }

@media(min-width:769px) {
    .protect-alert-btn {
        right: 50px;
    }

    .protect-alert-txt-box {
        right: 50px;
        width: auto;
        height: auto;
        line-height: 30px;
    }

    .protect-alert-txt-box-detail {
        right: 50px;
        width: auto;
        height: auto;
        top: 32px;
    }
}
/*保護區警示UI結尾*/

/*海洋生物動態套疊UI*/
.labelLegend-Marine {
    display: block;
    position: absolute;
    background-color: rgba(255, 255, 255, 1);
    right: 120px;
    top: 0px;
    border: 2px solid rgba(255,255,255,.4);
    padding: 4px;
    border-radius: 6px;
	width: 160px;
}

.labelLegend-Marine-inner{
	max-height: 460px;
	overflow-y: auto;
}
	.labelLegend-Marine-inner::-webkit-scrollbar {
		width: 5px;
		height: 8px;
		background-color: #b3b3b3; /* or add it to the track */
		border-radius: 999em;
	}
	.labelLegend-Marine-inner::-webkit-scrollbar-thumb {
		background: #3d4446;
		border-radius: 999em;
	}

.labelLegend-Marine-title{
	-webkit-border-top-left-radius: 4px;
	-webkit-border-top-right-radius: 4px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright: 4px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	background-color: #1e56a0;
	color: #FFF;
	font-size: 1em;
	line-height: 2;
	padding: 0 4px;
	position: relative;
    cursor:pointer;
}
.labelLegend-Marine-title:hover{
	background-color: #000;
}
.labelLegend-Marine-title:after{
	content: "";
    display: block;
    position: absolute;
    width: 13px;
    height: 100%;
    right: 4px;
    top: 0;
    background-image: url("../images/btn_arrow_down.svg");
    background-repeat: no-repeat;
    background-position: center;
}
    .labelLegend-Marine-title.close:after {
        content: "";
        display: block;
        position: absolute;
        width: 13px;
        height: 100%;
        right: 4px;
        top: 0;
        background-image: url("../images/btn_arrow_up.svg");
        background-repeat: no-repeat;
        background-position: center;
    }
.labelLegend-Marine-item{
    display: flex;
    row-gap: 2px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    flex-direction:column;
    margin: 4px 2px;
    padding: 4px;
}
.labelLegend-Marine-item > div:first-child{
    display: flex;
    justify-content: space-between;
}
.labelLegend-Marine-item > div:first-child > span{
    color: #0d6efd;
    font-weight: 600;
}
.labelLegend-Marine-item > div:last-child{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.labelLegend-Marine-item > div:last-child > div{
    display: flex;
    align-items: center;
    column-gap: 6px;
}

/*海洋生物動態套疊UI結尾*/

.filter_div{
	background-color: #2a79e1;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	margin: 2px;
	padding: 4px;
	text-align: left;
    display: inline-block;
	vertical-align: inherit;
    color: #FFF;
    white-space: nowrap;
    height: 33px;
}

.filter_div > a{
    float: right;
  }
  .filter_div > a >i{
    color: #FFF;
    margin-left: 4px;
  }
