<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/

.navigation {
    display: flex;
    align-items: center;
}

.nav-header {
    max-width: 280px;
    padding: 8px 0;
    transition: all ease 0.3s;
}

.sticky .nav-header {
    max-width: 240px;
}

.nav-brand,
.nav-brand img {
    display: block;
}

.header_area,
.header_area.sticky {
    background: linear-gradient(180deg, rgb(255 255 255 / 100%), rgb(255 255 255 / 80%));
    box-shadow: 0 0 20px rgba(0 0 0 / 12%);
    padding: 0;
}

.main_header_area .container {
    max-width: 1600px;
    padding: 0 2%;
}

.stellarnav ul {
    font-family: 'Noto Serif TC', sans-serif;
}

.stellarnav li.has-sub&gt;a:after {
    content: none;
}

.stellarnav&gt;ul&gt;li:after {
    width: 0;
    position: absolute;
    height: 2px;
    content: "";
    background: #c3af97;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: all ease 0.3s;
}

.stellarnav&gt;ul&gt;li:hover:after {
    width: 100%;
}

.stellarnav&gt;ul&gt;li&gt;a,
.stellarnav&gt;ul&gt;li.has-sub&gt;a:not(.dd-toggle) {
    padding: 0 2px;
    color: #333;
    letter-spacing: .5px;
    display: block;
    font-weight: 500;
    margin: 0 12px;
    text-transform: none;
    height: 100%;
    line-height: 83.5px;
    transition: all ease 0.3s;
}

.sticky .stellarnav&gt;ul&gt;li&gt;a,
.sticky .stellarnav&gt;ul&gt;li.has-sub&gt;a:not(.dd-toggle) {
    line-height: 74px;
}

.stellarnav&gt;ul&gt;li:hover&gt;a,
.stellarnav&gt;ul&gt;li.has-sub:hover&gt;a:not(.dd-toggle) {
    color: #b49b82;
}

.me_tp_features,
.swiper-pagination {
    display: none;
}

/*次分類*/
.stellarnav ul ul {
    background: transparent;
}

.stellarnav&gt;ul&gt;li.drop-left&gt;ul {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}

.stellarnav li li {
    background: #b49b82;
    border: none;
    border-bottom: 1px solid #ffffff33;
    margin-bottom: 0;
    transition: all ease .3s;
}

.stellarnav li li:hover {
    background: #c3af97;
}

.stellarnav li li:last-of-type {
    border: none;
}

.stellarnav li li a:not(.dd-toggle),
.stellarnav li li.has-sub&gt;a:not(.dd-toggle) {
    color: #fff;
    padding: 9px 15px;
    font-weight: 500;
    line-height: initial;
    height: auto;
    margin: 0;
    position: relative;
    font-size: 15px;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

.main_part {
    width: 90%;
    max-width: 1500px;
    padding: 50px 0;
}

#content,
#content_main {
    font-family: 'Noto Sans TC', Microsoft JhengHei, sans-serif;
}

.path {
    padding: 0 0 20px;
}

.show_content {
    padding: 0;
}

body.services_page:before {
    content: ' ';
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(https://pic03.eapple.com.tw/kindnessptc/bgbg.jpg) center / cover no-repeat;
}

/*預設解除背景輪播*/
#content_main {
    margin: 0;
}

.bannerindex {
    position: static;
    height: auto;
}

.swiper-banner {
    position: static;
    margin: 0;
    height: auto;
}

.swiper-slide img {
    height: auto;
}

@media screen and (max-width: 768px) {
    .bannerindex {
        padding: 0;
        margin: 0;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    width: 100%;
    height: auto;
    min-height: 110px;
    aspect-ratio: 20/3;
    position: relative;
    overflow: hidden;
    padding: 0;
    background: none;
    background-color: #fff;
}

.banner:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(https://pic03.eapple.com.tw/kindnessptc/banner.jpg) center / cover no-repeat;
    filter: contrast(0.25) brightness(1.5) opacity(0.35) sepia(.25);
}

.banner h5 {
    font-size: 36px;
    letter-spacing: 2px;
    font-weight: bold;
    line-height: 1.6;
    color: #60544a;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    font-family: 'Noto Serif TC';
}

.banner h5:after {
    content: 'KINDNESS PHYSICAL THERAPY';
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    display: block;
    letter-spacing: 0;
    opacity: .5;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
.blog_page h4.blog_category_title {
    display: none;
}

.blog_box,
.blog_le {
    padding: 0;
}

.blog_ri {
    padding: 0 0 0 60px;
}

.blog_subbox {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px 15px;
}

.blog_subbox:before {
    content: none;
}

.subbox_item,
.module_i_news li {
    width: 100%;
    margin: 0;
    border-bottom: none;
    background: #fff;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .075);
}

.subbox_item a,
.module_i_news li a {
    display: flex;
    flex-flow: column wrap;
    gap: 0;
}

.blog_list_le,
.i_blog_le {
    height: auto;
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

.blog_list_le:after,
.i_blog_le:after {
    content: 'VIEW MORE +';
    font-family: 'Roboto', 'Noto Sans TC', sans-serif;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 1px;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 8;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: rgba(61, 155, 126, .9);
    opacity: 0;
    transition: all .4s;

}

.subbox_item a:hover .blog_list_le:after,
.module_i_news li a:hover .i_blog_le:after {
    opacity: 1;
}

.blog_list_le img,
.i_blog_le img {
    min-width: 100%;
    margin: 0 auto;
    object-position: center;
    transition: 1s ease;
}

.subbox_item a:hover .blog_list_le img,
.module_i_news li a:hover .i_blog_le img {
    transform: scale(1.1);
}

.blog_list_ri,
.i_blog_ri {
    display: flex;
    flex-flow: column wrap;
    padding: 15px 10px 10px;
    position: relative;
    justify-content: center;
}

.blog_list_ri h5,
.i_blog_ri h5 {
    color: #3d9b7e;
    font-size: 20px;
    font-family: 'Noto Serif TC';
    font-weight: bold;
}

.blog_list_ri em,
.i_blog_ri em {
    font-weight: 400;
    margin: 8px 0 10px;
    font-size: 13px;
}

.blog_list_ri p,
.i_blog_ri p {
    line-height: 160%;
    -webkit-line-clamp: 2;
    margin-top: 0;
    font-size: 14px;
}

.subbox_item a:before,
.subbox_item a:after,
.module_i_news li a:before,
.module_i_news li a:after {
    content: none;
}

h5.blog_le_t {
    display: none;
}

.blog_le .accordion {
    border-radius: 0;
}

.accordion li .link a {
    color: #444;
    font-weight: 400;
    font-size: 15px;
    padding: 12px;
}

.accordion li .link {
    border-bottom: none;
}

.accordion li {
    transition: all 0.2s ease;
}

.blog_le .accordion&gt;li:hover,
.blog_le .accordion&gt;li.open:hover,
.blog_le .accordion&gt;li.on_this_category:hover {
    background: #c3af97 !important;
}

.blog_le .accordion&gt;li.open,
.blog_le .accordion&gt;li.on_this_category {
    background: #b49b82 !important;
}

.blog_le .accordion&gt;li.open .link a,
.blog_le .accordion&gt;li.open .link i {
    color: #fff !important;
}

.submenu {
    background: #fff;
    font-size: 14px;
}

.submenu a {
    font-family: 'Noto Sans TC', sans-serif;
    color: #444;
    letter-spacing: 0px;
    font-weight: 400;
    padding: 12px 12px 12px 36px;
    border-left: #fbf7f4 0 solid;
    transition: all .15s;
}

.submenu li.on_this_category a,
.submenu a:hover {
    background: #fbf7f4;
    color: #222;
}

.submenu a i {
    left: 12px;
    font-weight: var(--fa-style, 900);
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
}

.submenu a:hover {
    border-left-width: 4px;
}

.blog_search input[type=search] {
    background: #fff;
    font-size: 13px;
    border-radius: 0;
    padding: 10px 36px 10px 12px;
}

.blog_search input[type=submit] {
    filter: grayscale(20);
}

.blog_le .accordion li .link i {
    transition: none;
}

/*內頁*/
.articel_mainPic,
.blog_shareData {
    display: none;
}

h4.blog_category_title {
    padding: 0;
    margin-bottom: 0;
    font-size: 26px;
    color: #60544a;
    font-family: 'Noto Serif TC';
}

.blog_box_edit {
    color: #666;
    font-size: 16px;
}

.blog_box_edit * {
    line-height: 170%;
}

.blog_back {
    width: 100%;
    margin: 0 auto;
    grid-gap: 10px;
    justify-content: center;
}

.blog_back a {
    width: 100%;
    font-weight: 500 !important;
}

.blog_back a:hover {
    background: #3d9b7e !important;
}

.blog_back a.article_btn_next,
.blog_back a.article_btn_prev,
.blog_back a.article_btn_back {
    background: #92c7b6;
    transition: all .3s ease;
}

.news_related {
    padding: 48px 0;
    background: #fbf7f4;
}

.news_related_list {
    max-width: 1500px;
    width: 90%;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.news_related_list li {
    width: calc((100% - 60px) / 4);
}

.news_related_list li a {
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.lastPage {
    background: #3d9b7e;
    margin: 40px auto 20px;
}

.news_related h6 span:before {
    color: #666;
    font-family: 'Noto Serif TC';
}

.news_related_list li a p {
    margin: 6px auto 4px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #666;
}

/*首頁*/
.module_i_news ul {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 15px;
}

.module_i_news section {
    max-width: 1400px;
}

.module_i_news_list {
    padding: 0;
}

.module_i_news .animated-arrow {
    margin-top: 40px;
    background: #b49b82;
}

.module_i_news {
    padding: 80px 0 100px;
    width: 90%;
    margin: 0 auto;
}

.module_i_news .title_i_box h4 {
    color: #5F534A;
    font-weight: 700;
    font-family: 'Noto Serif TC';
    line-height: 1;
    letter-spacing: 0.025em;
}

.module_i_news li:nth-of-type(n+5) {
    display: none;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*footer*/
.footer {
    background: #f5f0ea;
    font-family: "Noto Serif TC";
    padding: 40px 0 0;
    box-shadow: 0 0 20px rgba(0 0 0 / 12%);
}

.footer_logo img {
    max-width: 100%;
    display: block;
}

.footer_logo {
    width: 100%;
    max-width: 280px;
    background: url(https://pic03.eapple.com.tw/kindnessptc/f_logo.svg) center/cover no-repeat;
    height: auto;
}

.footer_logo a {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 80/19;
}

.footer_logo img {
    display: none;
}

.footer_info {
    grid-gap: 10px;
    padding: 0;
    display: flex;
    flex-flow: column wrap;
    text-align: center;
    align-items: center;
    font-weight: 300;
}

.footer_menu a:first-of-type {
    display: none;
}

.footer_menu a:hover,
.footer_menu a {
    padding: 0;
    margin: 0 12px;
    color: #333;
    background: none;
    border: none;
    transition: all ease 0.3s;
}

.footer_info li:nth-child(2) {
    border-top: 1px solid rgba(0, 0, 0, .25);
    padding: 20px 0 30px;
    margin-top: 20px;
}

.footer_info ul {
    max-width: 768px;
    letter-spacing: 0;
}

.copy,
.copy a,
.copy a:hover {
    color: #fff;
}

.copy {
    background: #c3af97;
    border: none;
    padding: 18px 0;
}

.footer_info li p,
.footer_info li a {
    color: #333;
    transition: all ease 0.3s;
}

.footer_info li p {
    line-height: 1.9;
}

.box_link {
    display: none;
}

.footer_info li a:hover,
.footer_menu a:hover {
    color: #b49b82;
}

@media screen and (max-width: 1360px) {
    .blog_subbox {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 1024px) {

    .stellarnav&gt;ul&gt;li&gt;a,
    .stellarnav&gt;ul&gt;li.has-sub&gt;a:not(.dd-toggle),
    .sticky .stellarnav&gt;ul&gt;li&gt;a,
    .sticky .stellarnav&gt;ul&gt;li.has-sub&gt;a:not(.dd-toggle) {
        line-height: 54px;
    }

    .nav-header,
    .sticky .nav-header,
    .footer_logo {
        max-width: 220px;
    }

    .main_header_area .container {
        padding: 0;
    }

    .banner h5 {
        font-size: 26px;
    }

    .banner h5:after {
        font-size: 16px;
    }

    .news_related_list li {
        width: calc((100% - 20px) / 2);
    }

    .module_i_news ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    #bottom_menu {
        flex-direction: row-reverse;
    }

    .footer.with_shopping_mode {
        padding: 30px 0 67px;
    }

    #to_top {
        bottom: 77px;
    }

    .footer_info {
        padding: 0 5%;
    }

    .footer_menu a:hover,
    .footer_menu a {
        margin: 0;
    }

    .footer_info li:nth-child(2) {
        padding-bottom: 15px;
    }

    .footer_menu {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(100px, 100%), auto));
        gap: 15px;
        margin: 0 auto;
    }

    #bottom_menu li a i {
        font-size: 18px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #bottom_menu li:nth-of-type(2) {
        display: none;
    }

    #bottom_menu li:last-child {
        border-right: 1px solid #ddd;
    }

    #bottom_menu li:first-child {
        border: none;
    }

    .stellarnav .menu-toggle {
        padding: 16px 10px;
    }

    .stellarnav&gt;ul&gt;li&gt;a,
    .stellarnav&gt;ul&gt;li.has-sub&gt;a:not(.dd-toggle),
    .sticky .stellarnav&gt;ul&gt;li&gt;a,
    .sticky .stellarnav&gt;ul&gt;li.has-sub&gt;a:not(.dd-toggle),
    .sticky .stellarnav&gt;ul&gt;li&gt;a,
    .sticky .stellarnav&gt;ul&gt;li.has-sub&gt;a:not(.dd-toggle) {
        height: auto;
        line-height: 150%;
        margin: 0 8px;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        background: #c3af97;
    }

    .stellarnav.mobile&gt;ul {
        border-top: none;
        border-right: none;
        box-shadow: 0 0 10px rgba(0 0 0 / 12%);
    }

    .stellarnav.mobile li.open {
        background: #FAF7F4;
    }

    .stellarnav.mobile li.open li.open {
        background: #c3af97;
    }

    .stellarnav&gt;ul&gt;li&gt;a,
    .stellarnav&gt;ul&gt;li.has-sub&gt;a:not(.dd-toggle),
    .stellarnav.mobile&gt;ul&gt;li&gt;a,
    .stellarnav&gt;ul&gt;li:last-of-type&gt;a,
    .stellarnav&gt;ul&gt;li:last-of-type:hover&gt;a {
        padding: 10px 44px 10px 10px;
    }

    .stellarnav .icon-close:after,
    .stellarnav .icon-close:before,
    .stellarnav.mobile&gt;ul&gt;li&gt;ul&gt;li.has-sub.open&gt;a.dd-toggle .icon-plus:before,
    .stellarnav.mobile&gt;ul&gt;li&gt;ul&gt;li.has-sub.open&gt;a.dd-toggle .icon-plus:after {
        border-color: #fff;
    }

    .stellarnav a,
    .stellarnav.mobile&gt;ul&gt;li&gt;ul&gt;li.has-sub.open&gt;a {
        color: #fff;
    }

    .stellarnav.mobile&gt;ul&gt;li.open&gt;a.dd-toggle {
        padding: 12px 6px 0;
    }

    .stellarnav.mobile li li a.dd-toggle {
        margin-right: 5px;
    }

    .stellarnav.mobile li.open li.open a.dd-toggle {
        padding: 8px 0 0;
    }

    .stellarnav.mobile li li.has-sub a:not(.dd-toggle),
    .stellarnav li li&gt;a:not(.dd-toggle) {
        padding: 10px 43px 10px 17px;
    }

    .stellarnav li li {
        text-align: left;
        background: #b49b82;
    }

    .stellarnav li li&gt;a.dd-toggle .icon-plus:before,
    .stellarnav li li&gt;a.dd-toggle .icon-plus:after {
        border-color: #fff;
    }

    .stellarnav&gt;ul&gt;li:after {
        content: none;
    }

    .blog_ri {
        padding: 0;
    }

    .blog_subbox {
        grid-template-columns: 1fr;
    }

    .blog_search {
        margin-bottom: 30px;
    }

    h4.blog_category_title {
        font-size: 22px;
    }

    .module_i_news ul {
        grid-template-columns: 1fr;
    }

    .module_i_news {
        padding: 60px 0;
    }

    #bottom_menu li:last-child a em:before {
        content: '嬋柔/';
    }
}</pre></body></html>