﻿@charset "utf-8";
/*CSS Info ======================================================================
File Name: layout.css
Editor: Shellsirius
CreateDate: 2018/11/16
Version: 1.0
---------------------------
【 Table of Contents 】
	Materialize架構
=================================================================================*/
/*增訂grid system*/
@media only screen and (min-width: 1600px) {
    .row .col.xxl2 {
        width: 16.6%;
    }

    .row .col.xxl3 {
        width: 25%;
    }

    .row .col.xxl6 {
        width: 50%;
    }
}
/*===============================================================================
                                     全域設定
=================================================================================*/
/*-----------------------------共同格式-----------------------------*/
.MyInputTitle {
    font-size: 1rem;
    font-weight: bold;
    color: #0B6DC2;
    padding-left: 14px;
}

    .MyInputTitle i {
        font-size: 1rem;
        margin-right: 0.5rem;
        color: #EFDCED;
    }

.input-field > label {
    font-size: 1rem;
    font-weight: bold;
    color: #0B6DC2;
}

    .input-field > label:not(.label-icon).active {
        font-size: 1rem;
        font-weight: bold;
        color: #0B6DC2;
        transform: translateY(-14px) scale(1);
    }

        .input-field > label i, .input-field > label:not(.label-icon).active i {
            font-size: 1rem;
            margin-right: 0.5rem;
            color: #EFDCED;
        }

/*確認按鈕*/
.MyBtnArea {
    margin: 1rem 0;
    text-align: center;
}

/*MODAL*/
.modal {
}

    .modal .modal-title {
        padding: 1rem;
        background-color: #3e7fb7;
    }

        .modal .modal-title h4 {
            color: #FFF;
        }

    .modal .modal-footer {
        border-top: 1px solid #CCC;
    }

/*分隔線*/
.MyDivider {
    width: 100%;
    height: 2px;
    background-color: #EFDCED;
    margin: 2rem 0;
}
/*-----------------------------頁面標題-----------------------------*/
.pageArticle {
    display: table;
    width: 100%;
    margin-bottom: 3rem;
}

    .pageArticle .title, .pageArticle .article {
        display: table-cell;
    }

    .pageArticle .title {
        min-width: 184px;
        position: relative;
        background-image: url(../Images/pageTitle.png);
        background-size: 4rem auto;
        background-repeat: no-repeat;
        background-position: left top;
    }

        .pageArticle .title h3 {
            color: #0B6DC2;
            font-size: 1.5rem;
            padding: 0.5rem 0 0 1.5rem;
        }

            .pageArticle .title h3 span {
                font-size: 4rem;
            }

            .pageArticle .title h3 + h3 {
                text-align: right;
            }

    .pageArticle .article {
        padding-left: 1rem;
    }

        .pageArticle .article p {
            line-height: 1.5rem;
        }

.MySubTitle {
    height: 4rem;
    background-image: url(../Images/subTitle.png);
    background-repeat: no-repeat;
    background-size: 3rem auto;
    background-position: left center;
    padding-left: 3.5rem;
    margin: 2rem 0;
}

    .MySubTitle h4 {
        color: #1b82c8;
        padding-top: 2rem;
    }

/*-----------------------------地圖-----------------------------*/
.MyMapArea {
    position: relative;
}

.MyMap {
    width: 100%;
    height: 400px;
    /*background-color: #e2f1f5;*/
    position: relative;
}

@media (max-width: 768px) {
	.MyMap{width: 90%;}
    .pageArticle .title h3 span {font-size: 3.2rem;display: block;}
    .MySubTitle h4 {font-size: 1.25rem;}
}
#mapid {
    height: 400px;
}

#MyLayer {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 999;
    background-color: rgba(0,0,0,0.5);
    border-radius: 5px;
    padding: 5px;
    text-align: right;
}

    #MyLayer.off .layer {
        display: none;
    }

#btnLegend {
}

    #btnLegend a {
        display: inline-block;
        text-align: right;
        width: 2.5rem;
        height: 2.5rem;
        border: 2px solid #FFF;
        border-radius: 5px;
        padding: 0.25rem;
        color: #FFF;
        cursor: pointer;
    }

        #btnLegend a:hover {
            color: #8ac2e9;
            border: 2px solid #8ac2e9;
        }

        #btnLegend a i {
            font-size: 1.375rem;
            width: 2rem;
            line-height: 2rem;
            text-align: center;
        }

/* switch開關 */
.switchText {
    font-size: 18px;
    height: 36px;
    line-height: 36px;
    color: #FFF;
}

.switch {
    position: relative;
    display: inline-block;
    width: 65px;
    height: 28px;
}

    .switch input {
        display: none;
    }

.switchSlider {
    position: absolute;
    cursor: pointer;
    top: 8px;
    left: 0;
    right: 0;
    bottom: -8px;
    background-color: #CCC;
    -webkit-transition: .4s;
    transition: .4s;
}

    .switchSlider:before {
        position: absolute;
        content: "";
        height: 24px;
        width: 24px;
        left: 3px;
        bottom: 2px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .switchSlider {
    background-color: #8ac2e9;
}

input:focus + .switchSlider {
    box-shadow: 0 0 1px #8ac2e9;
}

input:checked + .switchSlider:before {
    -webkit-transform: translateX(35px);
    -ms-transform: translateX(35px);
    transform: translateX(35px);
}

.switchSlider.round {
    border-radius: 20px;
}

    .switchSlider.round:before {
        border-radius: 50%;
    }

.sliderText {
    font-size: 15px;
    line-height: 28px;
    color: #555;
    float: right;
    margin-right: 8px;
}

input:checked + .switchSlider .sliderText {
    float: left;
    margin-left: 10px;
    color: #FFF;
}

    input:checked + .switchSlider .sliderText:before {
        -webkit-transition: .4s;
        transition: .4s;
        -webkit-transform: translateX(25px);
        -ms-transform: translateX(25px);
        transform: translateX(25px);
    }

/*時間軸列*/
.AreaTimer {
    width: calc(100% - 40px);
    height: 2rem;
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: table;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    z-index: 999;
}

    .AreaTimer div {
        padding: 0 0.5rem;
		width: 100%;
		display: flex;
    }

        .AreaTimer div input[type="range"] {
            border: none;
			height: 26px!important;
			width: 100%;
        }

        .AreaTimer div output {
            padding: 0.5rem;
            color: #FFF;
        }

        .AreaTimer div .Ctrl {
            width: 2rem;
            height: 2rem;
            cursor: pointer;
            position: relative;
            margin-top: -1rem;
            margin: 0 ;
        }

.Stop:before {
    background-color: #FFF;
    width: 1rem;
    height: 1rem;
    position: absolute;
    content: "";
    top: 0.625rem;
    left: 0.625rem;
}

.Play:before {
    width: 0;
    height: 0;
    border-left: 15px solid #268dff;
    border-right: 10px solid transparent;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    position: absolute;
    content: "";
    top: 0.5rem;
    left: 10px;
}

.Pause:before {
    width: 4px;
    height: 1rem;
    background: #FFF;
    position: absolute;
    content: "";
    top: 0.625em;
    left: 0.6em;
}

.Pause:after {
    width: 4px;
    height: 1rem;
    background: #FFF;
    position: absolute;
    content: "";
    top: 0.625em;
    right: 0.6em;
}

.MyMapCtrl {
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    z-index: 999;
    background-color: #FFF;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    color: #000;
}

    .MyMapCtrl label {
        display: block;
    }

        .MyMapCtrl label span {
            color: #000;
        }

    [type="radio"]:not(:checked), [type="radio"]:checked {
        padding-left: 25px;
    }
	input[type="radio"] {
		vertical-align: middle!important;
	}

/*-----------------------------查詢條件-----------------------------*/
.MyQuery {
}

    .MyQuery .MyQueryBtn {
        width: 80px;
        float: left;
        padding-top: 3rem;
        text-align: right;
    }

    .MyQuery .clearfix {
        width: calc(100% - 80px);
        float: left;
    }

    .MyQuery .second .input-field {
        width: 48%;
        float: left;
        margin-top: 1.5rem;
        margin-right: 2%;
        padding-top: 1rem;
    }

        .MyQuery .second .input-field:last-child {
            margin-right: 0;
        }

    .MyQuery .third .input-field {
        width: 32%;
        float: left;
        margin-top: 1.5rem;
        margin-right: 2%;
        padding-top: 1rem;
    }

        .MyQuery .third .input-field:last-child {
            margin-right: 0;
        }

    .MyQuery .fourth .input-field {
        width: 23%;
        float: left;
        margin-top: 1.5rem;
        margin-right: 2%;
        padding-top: 1rem;
    }

    .MyQuery .input-field select, .MyQuery .input-field input {
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        border: 1px solid #CCC;
        padding: 0 8px;
    }

    .MyQuery .datepicker-controls input {
        border: none;
        padding: 0;
    }

.select-wrapper input.select-dropdown:focus {
    border: 1px solid #0B6DC2;
}

.MyQuery .input-field input.active, .MyQuery .input-field input:focus, .MyQuery .input-field input.valid {
    border: 1px solid #0B6DC2;
    box-shadow: none;
}

/*-----------------------------查詢結果-----------------------------*/
.MyResult {
    text-align: center;
}

    .MyResult h6 {
        padding-top: 0.5rem;
        color: #0B6DC2;
        font-weight: bold;
        line-height: 2.5rem;
    }

    .MyResult p {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .MyResult span {
        line-height: 1.5rem;
    }

.MyResultTitle {
    position: relative;
    display: table;
    width: 100%;
}

    .MyResultTitle div {
        display: table-cell;
        border: 4px solid #8AC3E9;
        height: 120px;
        text-align: center;
        vertical-align: middle;
    }

    .MyResultTitle p {
        display: block;
        width: 50%;
        height: 2rem;
        line-height: 2rem;
        background-color: #FFF;
        text-align: center;
        position: absolute;
        left: 25%;
        bottom: 0;
        margin-bottom: -1rem;
        color: #1b82c8;
        font-weight: bold;
        font-size: 1rem;
        line-height: 2rem;
    }

    .MyResultTitle div h6 {
        font-size: 2rem;
        font-weight: bold;
        color: #000;
        padding: 0;
        line-height: 3rem;
    }

    .MyResultTitle div p {
        display: initial;
        position: static;
        margin: 0;
        color: #888;
        font-weight: normal;
        font-size: 1rem;
        line-height: 1rem;
    }

/*結果區塊*/
.MyArea {
    margin-top: 3rem;
}

    .MyArea h5 {
        color: #000;
        font-weight: bold;
        padding: 1rem 0;
        text-align: left;
    }

        .MyArea h5 i {
            font-size: 1.25rem;
            margin-right: 0.5rem;
            color: #EFDCED;
        }

    /*結果圖表*/
    .MyArea .MyChart {
        width: 100%;
        /*height: 400px;*/
        margin-top: 1rem;
    }

	.MyArea .MyChart > p{
		font-size: 1.25rem;
		color: #FFF;
		background-color: #0B6DC2;
		padding: 4px 6px;
		display: inline-block;
	}

    .MyArea .MyChartBtn {
        padding: 1rem 0;
    }

        .MyArea .MyChartBtn a {
            cursor: pointer;
            padding: 0.325rem 1rem;
            border: 1px solid #0B6DC2;
            border-radius: 50px;
            margin-right: 0.5rem;
            color: #333;
        }

            .MyArea .MyChartBtn a:hover, .MyArea .MyChartBtn a.selected {
                background-color: #0B6DC2;
                color: #FFF;
            }

        .MyArea .chartInfo {
            margin-bottom: 0.25rem;
        }

    /*結果卡片*/
    .MyArea .MyCard {
        display: table;
        width: 100%;
    }

        .MyArea .MyCard .cards {
            display: table-cell;
            width: 20%;
        }

            .MyArea .MyCard .cards div {
                width: 80%;
                text-align: center;
                margin: 1rem auto;
                border: 2px solid #EFDCED;
                box-shadow: 2px 2px 2px rgba(0,0,0,0.1);
                padding: 1rem 0;
            }

                .MyArea .MyCard .cards div h6 {
                    font-size: 1.5rem;
                    line-height: 2.5rem;
                    font-weight: bold;
                }
	.MyArea .MyCard-GS {
        display: table;
        width: 100%;
    }

        .MyArea .MyCard-GS .cards {
            display: table-cell;
            width: auto;
        }
			.MyArea .MyCard-GS .cards div {
                width: 90%;
            }
	@media (max-width: 1366px) {
		.MyArea .MyCard-GS {
			display: flex;
			width: 100%;
		}

        .MyArea .MyCard-GS .cards {
            display: inherit;
            width: auto;
			flex-grow: 1;
			flex-basis: auto;
        }
			.MyArea .MyCard-GS .cards div {
                width: 90%;
            }
				.MyArea .MyCard-GS .cards div h6 {
                    font-size: 1.2rem;
                    line-height: 2rem;
                    font-weight: bold;
                }
	}

    /*結果清單*/
    .MyArea .MyList {
        height: 300px;
        max-height: 600px;
        overflow-y: auto;
    }

        .MyArea .MyList a {
            display: block;
            width: 100%;
            padding: 0.5rem 1rem;
            margin: 0.5rem 0;
            text-align: left;
            background-color: #f1f8fd;
            color: #000;
        }

            .MyArea .MyList a:before, .MyArea .MyList a:after {
                content: ".";
                display: block;
                height: 0;
                clear: both;
                visibility: hidden;
            }

            .MyArea .MyList a span {
                margin-left: 1rem;
                color: #888;
            }

                .MyArea .MyList a span:first-child {
                    font-style: italic;
                    color: #555;
                }

                .MyArea .MyList a span:last-child {
                    color: #0B6DC2;
                }

            .MyArea .MyList a:hover {
                font-weight: bold;
                background-color: #fff3fa;
            }

                .MyArea .MyList a:hover span {
                    color: #333;
                }

                    .MyArea .MyList a:hover span:last-child {
                        color: #ca0415;
                    }
/*海洋廢棄物查詢結果*/
.MyLitter {
    margin-top: 3rem;
}

    .MyLitter h6 {
        line-height: 2rem;
        color: #0B6DC2;
        font-weight: bold;
        border-bottom: 3px solid #8AC3E9;
        margin-bottom: 0.5rem;
    }

        .MyLitter h6 i {
            margin-right: 0.5rem;
        }


/*物種詳細資料*/
.MyDetail {
    margin-bottom: 3rem;
    width: 100%;
    height: auto;
    display: table;
}

    .MyDetail .MyDetail_left, .MyDetail .MyDetail_right {
        display: table-cell;
    }

    .MyDetail .MyDetail_left {
        min-width: 50%;
    }

    .MyDetail .MyDetail_right {
        padding: 0 1rem;
        position: relative;
        width: 50%;
        height: 440px;
    }

    .MyDetail p {
        font-size: 1rem;
        text-align: left;
        line-height: 1.5rem;
    }

        .MyDetail p + p {
            margin-top: 1rem;
        }

    /*物種標題*/
    .MyDetail .MarineTitle {
        text-align: left;
        padding-left: 76px;
        background-position: left center;
        background-size: 60px auto;
        background-repeat: no-repeat;
        height: 4.25rem;
        margin-bottom: 2rem;
    }

        .MyDetail .MarineTitle h4 {
            font-size: 1.75rem;
            color: #0B6DC2;
            line-height: 2.5rem;
        }

        .MyDetail .MarineTitle p {
            font-size: 1rem;
            color: #888;
            line-height: 1.5rem;
        }

        .MyDetail .MarineTitle.icon_1 {
            background-image: url(../Images/icon_Biodiversity_01_S.png);
        }

        .MyDetail .MarineTitle.icon_2 {
            background-image: url(../Images/icon_Biodiversity_02_S.png);
        }

        .MyDetail .MarineTitle.icon_3 {
            background-image: url(../Images/icon_Biodiversity_07_S.png);
        }

        .MyDetail .MarineTitle.icon_4 {
            background-image: url(../Images/icon_Biodiversity_04_S.png);
        }

        .MyDetail .MarineTitle.icon_5 {
            background-image: url(../Images/icon_Biodiversity_08_S.png);
        }

        .MyDetail .MarineTitle.icon_Other {
            background-image: url(../Images/icon_Biodiversity_06_S.png);
        }

/*物種照片*/
.MyDetail_right > div {
    position: relative;
}

.MyDetail_right .slider {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #FFF;
}

    .MyDetail_right .slider .slides li {
        background-color: #FFF;
    }

        .MyDetail_right .slider .slides li img {
            background-size: 100% auto;
            background-repeat: no-repeat;
            background-position: center center;
        }

    .MyDetail_right .slider .indicators .indicator-item.active {
        background-color: #8AC3E9;
    }

/*===============================================================================
                                  個別版面設定
=================================================================================*/
/*-----------------------------回報地圖-----------------------------*/
/*打點地圖*/
#mapid {
    height: 400px;
}

/*智慧財產權區域*/
.MyCC {
    background-color: #f3fbfd;
    padding: 1rem;
    margin-bottom:1rem;
}

    .MyCC p {
        font-size: 1rem;
        line-height: 1.5rem;
    }

        .MyCC p + p {
            padding-top: 1rem;
        }

    .MyCC label {
        color: #000;
    }

/*-----------------------------生物多樣性-----------------------------*/
.LifeSlide {
    border: 4px solid #8AC3E9;
    padding: 3rem 0;
    margin: 1rem 0;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

    .LifeSlide a {
        display: block;
        width: 15%;
        margin-left: 2%;
        float: left;
        text-align: center;
    }

        .LifeSlide a:first-child {
            margin-left: 0;
        }

        .LifeSlide a div {
            height: 7rem;
            background-position: top center;
            background-size: 80px auto;
            background-repeat: no-repeat;
        }

        .LifeSlide a p {
            padding-top: 5.5rem;
            font-size: 1.5rem;
            color: #013248;
        }

        .LifeSlide a:hover p, .LifeSlide a.selected p {
            color: #0B6DC2;
            font-weight: bold;
        }

            .LifeSlide a:first-child div {
                background-image: url(../Images/icon_Biodiversity_01.png);
            }

                .LifeSlide a.selected:first-child div, .LifeSlide a:first-child:hover div {
                    background-image: url(../Images/icon_Biodiversity_01_S.png);
                }

            .LifeSlide a:nth-child(2) div {
                background-image: url(../Images/icon_Biodiversity_02.png);
            }

                .LifeSlide a.selected:nth-child(2) div, .LifeSlide a:nth-child(2):hover div {
                    background-image: url(../Images/icon_Biodiversity_02_S.png);
                }

            .LifeSlide a:nth-child(3) div {
                background-image: url(../Images/icon_Biodiversity_07.png);
            }
                .LifeSlide a.selected:nth-child(3) div, .LifeSlide a:nth-child(3):hover div {
                    background-image: url(../Images/icon_Biodiversity_07_S.png);
                }

            .LifeSlide a:nth-child(4) div {
                background-image: url(../Images/icon_Biodiversity_04.png);
            }

                .LifeSlide a.selected:nth-child(4) div, .LifeSlide a:nth-child(4):hover div {
                    background-image: url(../Images/icon_Biodiversity_04_S.png);
                }

            .LifeSlide a:nth-child(5) div {
                background-image: url(../Images/icon_Biodiversity_08.png);
            }

                .LifeSlide a.selected:nth-child(5) div, .LifeSlide a:nth-child(5):hover div {
                    background-image: url(../Images/icon_Biodiversity_08_S.png);
                }

            .LifeSlide a:nth-child(6) div {
                background-image: url(../Images/icon_Biodiversity_06.png);
            }

                .LifeSlide a.selected:nth-child(6) div, .LifeSlide a:nth-child(6):hover div {
                    background-image: url(../Images/icon_Biodiversity_06_S.png);
                }

.MyCard {
}

    .MyCard .col {
        padding: 2rem;
    }

        .MyCard .col h3 {
            font-size: 1.5rem;
            font-weight: bold;
            color: #1b82c8;
            padding: 1rem;
        }

/*-----------------------------垂釣漁業資源-----------------------------*/
.myCharts {
}
    .myCharts h5 {
        color: #000;
        font-weight: bold;
        padding: 1rem 0;
        text-align: left;
    }
        .myCharts h5 i {
            font-size: 1.25rem;
            margin-right: 0.5rem;
            color: #EFDCED;
        }
    .myCharts .row .col {
        margin-bottom: 40px;
    }
        .myCharts p {
            line-height: 1.5rem;
            font-size: .875rem;
            margin-left: 30px;
        }

/*------------------------preloader-----------------------*/
.preloader-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff;
    left: 0;
    top: 0;
    z-index: 9999;
}

.preloader {
    top: 50%;
    left: 50%;
    height: 60px;
    margin: -30px 0 0 -40px;
}

    .preloader, .preloader .lines, .preloader .lines .line {
        width: 80px;
        position: absolute;
    }

        .preloader .lines {
            height: 40px;
        }

            .preloader, .preloader .lines, .preloader .lines .line {
                width: 80px;
                position: absolute;
            }

                .preloader .lines .line.line-1 {
                    top: 0;
                    -webkit-animation: slide 2s ease 0s infinite;
                    -moz-animation: slide 2s ease 0s infinite;
                    animation: slide 2s ease 0s infinite;
                }

                .preloader .lines .line.line-2 {
                    top: 15px;
                    -webkit-animation: slide 2s ease .25s infinite;
                    -moz-animation: slide 2s ease .25s infinite;
                    animation: slide 2s ease .25s infinite;
                }

                .preloader .lines .line.line-3 {
                    top: 30px;
                    -webkit-animation: slide 2s ease .5s infinite;
                    -moz-animation: slide 2s ease .5s infinite;
                    animation: slide 2s ease .5s infinite;
                }

                .preloader .lines .line {
                    height: 10px;
                    background-color: #000;
                    clip: rect(0,0,20px,0);
                }

                .preloader .lines .line {
                    background-color: #8AC3E9;
                }

                .preloader .loading-text {
                    color: #8AC3E9;
                }

                .preloader .loading-text {
                    position: absolute;
                    top: 50px;
                    text-align: center;
                    width: 100%;
                    color: #000;
                    font-size: 13px;
                    font-family: sans-serif;
                    letter-spacing: 3px;
                    line-height: 10px;
                    height: 10px;
                    -webkit-animation: fade 1s ease 0s infinite;
                    -moz-animation: fade 1s ease 0s infinite;
                    animation: fade 1s ease 0s infinite;
                }

@-moz-keyframes slide {
    0% {
        clip: rect(0,0,20px,0);
    }

    30%,50% {
        clip: rect(0,80px,20px,0);
    }

    100%,80% {
        clip: rect(0,80px,20px,80px);
    }
}

@-webkit-keyframes slide {
    0% {
        clip: rect(0,0,20px,0);
    }

    30%,50% {
        clip: rect(0,80px,20px,0);
    }

    100%,80% {
        clip: rect(0,80px,20px,80px);
    }
}

@keyframes slide {
    0% {
        clip: rect(0,0,20px,0);
    }

    30%,50% {
        clip: rect(0,80px,20px,0);
    }

    100%,80% {
        clip: rect(0,80px,20px,80px);
    }
}

@-webkit-keyframes fade {
    0%,100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@-moz-keyframes fade {
    0%,100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

@keyframes fade {
    0%,100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.ui-widget-overlay {
    z-index: 9999;
}

/*===============================================================================
                                  RWD 設定
=================================================================================*/
@media only screen and (max-width: 960px) {
    .MyQuery .fourth .input-field {
        width: 48%;
    }

    /*生物多樣性*/
    .LifeSlide {
        overflow-x: auto;
    }

        .LifeSlide .clearfix {
            min-width: 650px;
        }

        .LifeSlide a {
            width: 100px;
            margin-left: 10px;
        }

            .LifeSlide a p {
                font-size: 1.25rem;
            }

    .MyDetail .MyDetail_left, .MyDetail .MyDetail_right {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    /*物種照片*/
    .MyDetail_right .slider {
        height: 300px;
    }

    .MyResultTitle p {
        width: 80%;
        left: 10%;
    }

    /*結果*/
    .MyArea .MyCard {
        display: initial;
    }

        .MyArea .MyCard .cards {
            width: 100%;
            display: block;
        }

            .MyArea .MyCard .cards div {
                display: table;
            }

                .MyArea .MyCard .cards div h6, .MyArea .MyCard .cards div p {
                    display: table-cell;
                    width: 50%;
                }
}

@media only screen and (max-width: 600px) {
    /*頁面標題*/
    .pageArticle, .pageArticle .title, .pageArticle .article {
        display: block;
    }

        .pageArticle .title h3 {
            display: inline-block;
        }

            .pageArticle .title h3 + h3 {
                text-align: left;
                padding: 0;
            }

    .MyQuery .clearfix {
        width: 100%;
    }

    .MyQuery .third .input-field, .MyQuery .second .input-field, .MyQuery .fourth .input-field {
        width: 100%;
        margin: 1.5rem 0 0 0;
    }

    .MyQuery .MyQueryBtn {
        width: 100%;
        text-align: center;
        padding-top: 0.5rem;
    }

}

/*===============================================================================
                               修正leaflet-popup
=================================================================================*/
.leaflet-popup {
    font:16px/1 "\5FAE\8EDF\6B63\9ED1\9AD4", Arial, Helvetica, clean, Helmet, Freesans, sans-serif;
}

.leaflet-popup-content {
    margin: 20px 0;
    padding: 0 20px;
}

.leaflet-popup-scrolled {
    border: none;
}

.leaflet-popup-content-wrapper {
    width: 220px;
	overflow-y: auto;
}
.leaflet-popup-content {
	margin: 13px 0px 13px 0px;
}

/*POPUP中的table*/
    .leaflet-popup .Mytable {

    }

        .leaflet-popup .Mytable caption {
            font-size: 1.25rem;
            font-weight: bold;
            color: #0B5CA2;
            line-height: 2rem;
            border-bottom: 2px solid #a9d4ef;
            margin-bottom: 0.5rem;
			caption-side: top!important;
        }

        .leaflet-popup .Mytable tr {
            border-bottom: 1px dashed #a9d4ef;
        }

            /*.leaflet-popup .Mytable tr:last-child {
                border-bottom: none;
            }*/

        .leaflet-popup .Mytable th, .leaflet-popup .Mytable td {
            padding: 0.25rem 2px;
            width: 50%;
        }

        .leaflet-popup .Mytable th, .leaflet-popup .Mytable td:first-child {
            font-weight: bold;
        }

        .CaptionOnly .leaflet-popup .Mytable caption {
            border-bottom: none;
            color: #333;
            margin-bottom: 0;
        }

/*POPUP中的照片輪播*/
    .leaflet-popup .carousel {
        height: 180px;
    }

        .leaflet-popup .carousel.carousel-slider .carousel-item {
            height: 180px;
            min-height: 120px;
        }

.popupOnlyTitle{
	font-size: 1.25rem;
    font-weight: bold;
	color: #333;
}

/*popup回報狀態*/
.popup-title{
    font-size: 2rem;
    font-weight: bold;
    color: #F16B6F;
    margin-bottom: 10px;
}
.txt-area{
    display: flex;
    border-bottom: 1px solid #e5e5e5;
    padding: 10px 0;
}
.txt-info-area{
    background-color: #f3fbfd;
    padding: 1rem;
    margin: 10px 0;
    border-radius: 8px;
}
.txt-info-area > p {
    color: #3e7fb7;
    font-weight: 600;
}
.popup-title-alert{
    font-size: 1.25rem;
    font-weight: bold;
    color: #3e7fb7;
    margin-bottom: 10px;
}
.popup-title-alert > i{
    margin-right: 4px;
}
.txt-info-ul{
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem;
}
.txt-info-ul > li{
    padding: 0.5rem 0;
}
.txt-info-ul:last-child{
    border-bottom: 0px;
}