@charset "UTF-8";* {
    padding: 0;
    margin: 0;
    font-size: 23px;
    letter-spacing: 2px;
    font-family: 'Noto Sans TC', sans-serif;
    outline: none
}

html{ overflow-x: hidden;}

body {
    background-color: #FDF4E4;
    overflow-x: hidden
}

.container {
    max-width: 1200px;
    margin: 0 auto
}

img {
    width: 100%
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

select::-ms-expand {
    display: none
}

header {
    border-top: solid 7px #D8E075;
    position: relative
}

header .h-logo {
}

header .h-logo img {
    display: block;
    width: 400px;
    margin: 40px auto
}

header .banner {
    width: 100%
}

header .banner img {
    width: 100%
}

header:after,main:after {
    content: '';
    display: block;
    width: 100%;
    background-color: #EBEEC6;
    height: 500px;
    position: absolute;
    top: 50%;
    transform: translate(0, -10%) rotate(-3deg) scale(1.1);
    z-index: -1
}

main {
    position: relative
}

main h2 {
    text-align: center;
    padding: 100px 50px
}

main h2 p {
    line-height: 2
}

main h2 p + p {
    margin-top: 30px
}

.service {
    max-width: 1000px;
    margin: 0 auto
}

.service ul {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

.service ul li {
    list-style: none
}

.service ul li .photo {
    position: relative;
    background: #fff;
    border-radius: 50%;
    width: 160px;
    height: 160px
}

.service ul li .photo img {
    transform: scale(.7)
}

.service ul li p {
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
    font-size: .9rem
}

.contact {
    margin: 50px 0
}

.contact .photo {
    max-width: 1000px;
    margin: 0 auto
}

.contact .photo img {
}

.contact-box {
    background: #fff;
    border-radius: 50px;
    padding: 60px;
    display: flex;
    align-items: center;
    margin-top: -7px
}

.contact-box .imgbox {
    width: 40%
}

.contact-box .content {
    width: 60%;
    padding-left: 50px
}

.form-box {
    width: 100%
}

.contact-box .content h3 {
    margin-bottom: 40px;
    line-height: 1.8
}

.contact-box .content select, input,button {
    height: 60px;
    width: 100%;
    border-radius: 50px;
    padding: 0 20px;
    font-size: 18px;
    border: 0;
    background: #eee;
    margin-top: 20px;
    box-sizing: border-box;
}

.select-box {
    position: relative
}
select{ color: #000;}

.contact-box .content select {
    margin-top: 0;
    padding-right: 50px
}

.contact-box .content select:hover {
    cursor: pointer
}

.select-box:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 8px 0 8px;
    border-color: #5b5b5b transparent transparent transparent;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%)
}

.contact-box .content input {
    width: 100%
}

.contact-box .content input:focus {
    background: #ddd
}

.contact-box .content button {
    background: #FFB1C2;
    color: #fff;
    cursor: pointer
}

.contact-box .content button:hover {
    background: #eba1b2
}

.link {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center
}

.link h3 {
    line-height: 2;
    letter-spacing: 10px
}

.link ul {
    display: inline-block;
    margin: 80px 0
}

.link ul:after {
    content: '';
    display: block;
    clear: both
}

.link ul li {
    width: 80px;
    list-style: none;
    float: left;
    margin-right: 80px
}

.link ul li:last-child {
    margin-right: 0
}

.link ul li a {
}

.link ul li img {
}

footer {
    background: #FFE5C6
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    padding: 50px
}

footer .f-logo {
    width: 360px
}

footer p {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.8
}
/*==============================================*/
@media only screen and (max-width: 1200px) {
    *{font-size: 18px;    font-family: sans-serif; font-weight: normal;}
    header:after, main:after {
    height: 400px;
    }
.container{
    max-width: none;
    padding: 0 30px;
}
    header .h-logo img{
    max-width: 300px;
    margin: 30px auto;
}
    main h2{
    padding: 30px;
}
    main h2 p{}
.service{
    max-width: 700px;
}
.service ul li .photo{
    width: 100px;
    height: 100px;
}
    .contact .photo{ max-width:700px;}
    .contact-box{
    padding: 30px;
}
    .contact-box .content{
    padding-left: 20px;
}
    .contact-box .content h3{
    margin-bottom: 20px;
    line-height: 1.5;
}
    .contact-box .content select, input, button{
    height: 50px;
    margin-top: 15px;
}
}

@media only screen and (max-width: 768px) {
    .container{padding: 0 20px;}
    main h2{
    padding: 20px 0;
}
    main h2 p{line-height: 1.5;font-size: 16px;}
 .service ul{
    display: block;
}
    .service ul:after{ content:""; display:block; clear:both}
    .service ul li{
    float: left;
    width: calc(100% / 3 - 20px);
    margin-right: 30px;
    margin-bottom: 30px;
    text-align: center;
}
    .service ul li:nth-child(3){margin-right: 0;}
    .service ul li:nth-child(3n+1){ clear:both;}
    .service ul li .photo{width:100%;height: 100%;}

.contact-box{
    display: block;
    padding: 30px;
    border-radius: 20px;
}
    .contact-box .imgbox{ display:none}
    .contact-box .content{
    width: 100%;
    padding-left: 0;
}
.contact-box .content h3{
    text-align: center;
    font-size: 16px;
    margin-bottom: 0;
}
    .contact-box .content select, input, button{
    font-size: 16px;
    margin-top: 20px;
}

    .select-box:after{
    border-width: 9px 6px 0 6px;
    transform: translateY(15%);
}
    .contact{
    margin: 30px 0;
}
    .link h3{
    line-height: 1.5;
    letter-spacing: 5px;
}
    .link ul{
    margin: 30px 0;
}
    .link ul li{
    width: 60px;
    margin-right: 30px;
}
   footer .container{
    display: block;
    padding: 30px 20px;
    text-align: center;
} 

    footer .f-logo{
    max-width: 250px;
    margin: 0 auto 20px;
}
    footer p{
    line-height: 1.5;
    font-size: 14px;
}
}