/* 字體 */
@font-face {
    font-family: "GenSenRounded2-B";
    src: url('../font/GenSenRounded-B.ttc');
}

@font-face {
    font-family: "GenSenRounded2-EL";
    src: url('../font/GenSenRounded-EL.ttc');
}

@font-face {
    font-family: "GenSenRounded2-H";
    src: url('../font/GenSenRounded-H.ttc');
}
 
@font-face {
    font-family: "GenSenRounded2-L";
    src: url('../font/GenSenRounded-L.ttc');
}

@font-face {
    font-family: "GenSenRounded2-M";
    src: url('../font/GenSenRounded-M.ttc');
}

@font-face {
    font-family: "GenSenRounded2-R";
    src: url('../font/GenSenRounded-R.ttc');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-size: 16px;
    font-family: "GenSenRounded2-M";
}

a {
    text-decoration: unset;
}

ul {
    list-style: none;
}

/* header */
#header .header-top {
    background-color: #7DBE48;
    padding: 12px 0;
}

#header .contact-icon a span {
    font-size: 22px;
    line-height: 26px;
    color: #fff;
    margin-left: 13px;
}

#header .contact-icon a {
    display: flex;
    align-items: center;
}

#header .social-media {
    display: flex;
    align-items: center;
    margin: 0;
}

#header .social-media>li:not(:first-child) {
    margin-left: 16px;
}

#header .header-mian {
    padding: 14px 0;
}

#header #collapsibleNav {
    justify-content: end;
    font-size: 22px;
    line-height: 26px;
    color: #505050;
}

#header #collapsibleNav li:not(:first-child) {
    margin-left: 30px;
}

/* footer */
#footer .footer-body {
    position: relative;
    background: url('/assets/image/footer/footer-body-bg.png') no-repeat;
    padding: 80px 0;
    background-size: cover;
}

#footer .footer-logo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
}

#footer .column .footer-title span {
    display: inline-block;
    font-size: 24px;
    line-height: 29px;
    font-family: GenSenRoundedTWw, GensenRoundedTW;
    font-weight: 550;
    color: #212529;
}

#footer .column .footer-title span::after {
    content: '';
    display: block;
    /* width: 100%; */
    width: 95px;
    height: 3px;
    margin-top: 15px;
    background: linear-gradient(90deg, #FF6058 0%, rgba(255, 96, 88, 0)100%);
}

#footer .column .footer-list {
    padding: 0;
}

#footer .column .footer-list li {
    margin-top: 20px;
}

#footer .column .footer-list a {
    color: #505050;
    font-size: 22px;
    line-height: 26px;
}

#footer .footer-bottom {
    background: url('/assets/image/footer/footer-bottombg.png') no-repeat;
    background-size: cover;
    padding: 39px 0 27px;
}

#footer .footer-bottom p {
    text-align: center;
    color: #fff;
    font-size: 18px;
    line-height: 28px;
    margin: 0;
}


@media (max-width: 465px) {
    #header .social-media {
        margin-top: 12px;
        padding: 0;
    }

    #header .logo img {
        height: 50px;
    }

    #header #collapsibleNav li {
        margin: 0 !important;
    }

    #footer .column {
        width: 100%;
        margin-bottom: 30px;
    }
}