﻿html {
    background-color: #E8E8E8;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: #000000;
    font-family: Arial,"微軟正黑體",Heiti TC;
    max-width: 100%;
    height: auto;
    overflow-x: hidden;
}

header {
    position: relative;
    width: 100%;
    z-index: 1;
    background-color: #0033A0;
}

    header img {
        width: 55%;
    }

header > ul {
    display: block;
    width: 1024px;
    margin: 0 auto;
    padding: 15px 0;
}

header > ul > li {
    list-style: none;
    display: inline-block;
}

header > ul > li:nth-of-type(2),
header > ul > li:nth-of-type(3) {
    float: right;
    margin: 0 10px;
}

header > ul > li > a {
    color: #FFFFFF;
}

footer {
    position: relative;
    width: 100%;
    z-index: 1;
    background-color: #0033A0;
}

    footer img {
        width: 37%;
    }

    footer > div:nth-of-type(1) {
        width: 1024px;
        margin: 0 auto;
        padding: 10px 0 0 0;
    }

    footer > div:nth-of-type(1) > div{
        display:inline-flex;
        justify-content:flex-start;
    }

    footer > div:nth-of-type(2) {
        width: 1024px;
        margin: 0 auto;
        text-align: left;
        padding: 0 0 10px 0;
    }

    footer > hr {
        width: 100%;
        color:white;
    }

footer > div:nth-of-type(2) a {
    color:white;
    text-decoration:none;
}


    footer > div > div > ul {
        margin: 0 50px 0 0;
        padding:0;
    }

    footer > div > div > ul > li {
        list-style: none;
        color: #FFFFFF;
        margin: 0;
    }

        footer > div > p {
            
            color: #FFFFFF;
            
        }


input[type="text"], input[type="date"], input[type="email"] {
    width: 45%;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

input[type="submit"], input[type="button"], button {
    font-size: 1.1em;
    padding: 5px;
    font-family: 'Microsoft JhengHei','微軟正黑體';
    text-align: center;
}

input::placeholder {
    opacity: 0.5;
}