html, body, ul, li, dl, dd, p {
    margin: 0;
    padding: 0;
    font-family: Arial, MsJhengHeiBold, 微軟正黑體, Microsoft JhengHei, Roboto, PingFangTC, sans-serif;
    font-size: 14px;
    list-style: none;
}

a {
    text-decoration: none;
    font-weight: bold;
    color: rgba(98, 75, 125, 1);
}

a.focus {
    color: rgba(254, 122, 58, 1);
}

header#mobile_header {
    display: none;
}

header#pc_header {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    margin: 0 auto;
}

header#pc_header .logo {
    width: 130px;
}

header nav ul {
    display: flex;
    list-style: none;
}

header nav ul li {
    margin: 0 20px;
    display: inline-flex;
    align-items: center;
}

header nav ul li span {
    display: block;
    background-color: #624B7D;
    color: #fff;
    font-weight: bold;
    padding: 4px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 12px;
}

header nav ul li button {
    width: 140px;
    height: 40px;
    opacity: 1;
    border-radius: 30px;
    background: linear-gradient(270deg, rgba(253, 167, 106, 1) 0%, rgba(253, 134, 102, 1) 51.76%, rgba(251, 111, 98, 1) 90.63%, rgba(251, 111, 98, 1) 100%);
    border: 2px solid rgba(255, 255, 255, 1);
    box-shadow: 3.65px 1.63px 13px  rgba(108, 98, 255, 0.81);
    color: #fff;
    cursor: pointer;
}

header nav ul li button a { 
    display: block;
    color: #fff;
    height: 35px;
    line-height: 2.5;
}

section.t6 {
    background-image: url(../images/t6_image.png);
    background-repeat: no-repeat;
    background-size: 675px;
    background-position: left top;
}

section.t6 .main {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.t6 .main .left {
    width: 50%;
}

section.t6 .main .right {
    padding: 50px 0;
}

section.t6 .main .right .title {
    color: rgba(254, 122, 58, 1);
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 10px;
}

section.t6 .main .right input {
    background: rgba(245, 244, 242, 1);
    border: 0;
    padding: 16px;
    width: 200px;
    margin-top: 14px;
}

section.t6 .main .right .email input {
    width: 435px;
}

section.t6 .main .right textarea {
    width: 435px;
    background: rgba(245, 244, 242, 1);
    border: 0;
    padding: 16px;
    height: 100px;
    margin: 14px 0;
}

section.t6 .main .right button {
    border: 0;
    color: #fff;
    padding: 10px 50px;
    cursor: pointer;
    background: linear-gradient(270deg, rgba(253, 167, 106, 1) 0%, rgba(253, 134, 102, 1) 51.76%, rgba(251, 111, 98, 1) 90.63%, rgba(251, 111, 98, 1) 100%);
}

footer {
    background-color: rgba(63, 63, 63, 1);
}

footer .main {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    color: #fff;
}

footer .main .logo {
    width: 130px;
}

footer .main .right ul li {
    margin-bottom: 10px;
}

footer .main .right img {
    width: 12px;
    vertical-align: middle;
    margin-right: 8px;
}

@media screen and (max-width: 1000px) {
    header#pc_header {
        display: none;
    }

    header#mobile_header {
        display: block;
    }

    header#mobile_header .main {
        display: flex;
        justify-content: space-between;
    }

    header#mobile_header .main .nav {
        margin: 15px;
        cursor: pointer;
        position: relative;
    }

    header#mobile_header .main .nav .nav_link {
        position: absolute;
        width: 200px;
        left: 0;
        display: none;
    }

    header#mobile_header .main .nav dl dd {
        border: 1px solid #ccc;
        background-color: #fff;
    }

    header#mobile_header .main .nav dl dd a {
        display: block;
        padding: 10px;
        font-size: 16px;
    }

    header#mobile_header .main .logo {
        width: 130px;
        margin-top: 15px;
    }

    header#mobile_header .main .lang span {
        display: block;
        background-color: #624B7D;
        color: #fff;
        font-weight: bold;
        padding: 4px;
        cursor: pointer;
        border-radius: 4px;
        font-size: 14px;
        margin: 20px;
    }
}

@media screen and (max-width: 900px) {
    section.t6 {
        background-image: none;
    }

    section.t6 .main {
        flex-direction: column;
    }

    section.t6 .main .right {
        width: 90vw;
    }

    section.t6 .main .right {
        padding: 20px;
    }

    section.t6 .main .right input,
    section.t6 .main .right .email input,
    section.t6 .main .right textarea {
        width: 85vw; 
    }

    footer .main {
        flex-direction: column;
        text-align: center;
    }
}