﻿@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    line-height: 1;
    box-sizing: border-box;
}

html {
    background-color: #0268b7;
}
html.parkinglots {
    background-color: #FFF;
}

body > * {
    font-family: "Microsoft JhengHei", 微軟正黑體, 微软雅黑, "Microsoft YaHei", "Lucida Sans Unicode", Helvetica, 新細明體, Verdana, Tahoma, sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
    aspect-ratio: attr(width) / attr(height);
}
.container{
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
}
    .col {
        display: flex;
    }

    .col__displaytime{
        flex: 0 0 30%;
    }

    .col__operation{
        flex: 0 0 70%;
    }
        .col__img {
            flex: 0 0 170px;
            padding: 0 5px;
            display: flex;
            align-items: center;
        }

    .col__text {
        flex: 1 0 0;
        padding: 10px 0;
        margin: 0 10px;
        display: flex;
        align-items: center;
    }

    .col__text-wrap {
        flex: 0 0 100%;
        padding: 0.3em;
        background: #FFF;
        border-radius: 0.5em;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        min-height: 40px;
    }

        .col__text-wrap span {
            font-size: 24px;
            font-weight: bold;
            color: #333;
            display: inline-block;
            line-height: 1.2;
            text-align: left;
        }

    .info__box {
        display: flex;
    }

    .info__img {
        flex: 0 0 auto;
    }

    .info__detail {
        text-align: center;
        padding: 0 0.5em;
    }

    @media only screen and (min-width: 300px) and (max-width: 420px) {
        .container {
            max-width: 100%;
            margin-top: 1em;
        }

        .col {
            flex-wrap: wrap;
        }

        .col__img {
            flex: 0 0 100%;
            justify-content: flex-start;
            padding: 0 0 0 1em;
        }

        .tw .col__img img {
            width: 50%;
        }

        .en .col__img img {
            width: 90%;
        }

        .col__text {
            flex: 0 0 90%;
            margin-left: auto;
            padding-right: 1em;
        }

        .col__text-wrap {
            width: 90%;
            min-height: 46px;
            padding: 0.5em 1em;
        }

            .col__text-wrap span {
                font-size: 18px;
            }
    }

    /* 停車場 */
    .parking__table {
        margin: 0.25em 0;
        width: 100%;
        border: 1px solid #333;
        border-collapse: collapse;
    }

        .parking__table th,
        .parking__table td {
            border: 1px solid #333;
            padding: 0.5em;
            text-align: center;
            font-size: 16px;
            line-height: 1.4;
        }

        .parking__table th {
            background-color: #efefef;
            color: #000;
            font-weight: bold;
        }

        .parking__table.col-6 th {
            width: calc(100% / 6);
        }

        .parking__table.col-5 th {
            width: calc(100% / 6);
        }

            .parking__table.col-5 th:nth-child(2),
            .parking__table.col-5 th:nth-child(3) {
                width: 25%;
            }

    td.parkinggps {
        font-size: 14px;
        text-align: left;
    }