@charset "utf-8";

/*※※※※※【【  固定區塊不動↓↓↓  】】※※※※※*/

@import url('https://fonts.googleapis.com/css2?family=Advent+Pro:ital,wght@0,100..900;1,100..900&family=Alumni+Sans+Pinstripe:ital@0;1&family=El+Messiri:wght@400..700&family=Kiwi+Maru&family=M+PLUS+Rounded+1c&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+JP:wght@300&family=Noto+Serif+TC:wght@200..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Shippori+Mincho&family=Yuji+Mai&family=Zen+Kaku+Gothic+New&family=Zen+Maru+Gothic&display=swap');

/*new----------------------------------*/
/*header*/
body {
    font-family: "Zen Kaku Gothic New", sans-serif;
}

.pageIndex .main_part {
    border-top: none;
}


@media screen and (max-width: 600px) {
    .main_part {
        padding: 50px 20px 20px;
    }
}

/*※※※※※【【  此案件更動處↓↓↓  】】※※※※※*/


/*大圖*/
.pageIndex .swiper-slide {
    position: relative;
}

/*因為偽元素，所以要加的*/
.swiper-slide:before,
.swiper-slide:after {
    content: "";
    position: absolute;
    z-index: 999;
    pointer-events: none;
}

/*before+after依樣要寫的內容拆出來寫一起，要寫在個別下方也可以*/
/*第一張大圖的偽元素*/


.pageIndex .swiper-slide:nth-child(1):before {
    background: url(https://pic03.eapple.com.tw/ycmclinic/flow.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 10%;
    left: 25%;
    width: 80% !important;
    height: 0 !important;
    background-position: left;
    padding-bottom: calc(100% / 2 * 0.7);
}

.pageIndex .swiper-slide:nth-child(1):after {
    background: url(https://pic03.eapple.com.tw/ycmclinic/banner_ac2.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 29%;
    left: 8%;
    width: 38%;
    height: 30% !important;
    background-position: left;
    padding-bottom: calc(100% / 2 * 0.18);
}


/*第二張大圖的偽元素*/

.pageIndex .swiper-slide:nth-child(2):before {
    background: url(https://pic03.eapple.com.tw/ycmclinic/flow.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 10%;
    left: 22%;
    width: 80% !important;
    height: 80% !important;
    background-position: left;
    padding-bottom: calc(100% / 2 * 0.4);
}

.pageIndex .swiper-slide:nth-child(2):after {
    background: url(https://pic03.eapple.com.tw/ycmclinic/banner_ac2.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 38%;
    left: 55%;
    width: 55%;
    height: 27% !important;
    background-position: left;
    padding-bottom: calc(100% / 2 * 0.18);
}

.pageIndex .swiper-slide.swiper-slide-active:nth-child(1):before {
    animation: jump 2.1s infinite linear alternate;
}

.pageIndex .swiper-slide.swiper-slide-active:nth-child(2):before {
    animation: jump 2.1s infinite linear alternate;
}

.pageIndex .swiper-slide.swiper-slide-active:nth-child(1):after {
    animation: slide-top 2s 0.3s both;
}

.pageIndex .swiper-slide.swiper-slide-active:nth-child(2):after {
    animation: slide-left 2s 0.3s both;
}

/*文字出現特效*/
@keyframes slide-left {
    0% {
        -webkit-transform: translateX(-5%);
        /* 一開始的位置 在X-100(最下方)*/
        transform: translateX(-5%);
        opacity: 0;
        /*透明度0*/
    }

    100% {
        -webkit-transform: translateX(0);
        /* 跑到最後終止的位置 在X-0(最上方)*/
        transform: translateX(0);
        opacity: 1;
        /*透明度顯示*/
    }
}

@keyframes slide-top {
    0% {
        -webkit-transform: translateY(-20%);
        /* 一開始的位置 在Y-100(最下方)*/
        transform: translateY(-20%);
        opacity: 0;
        /*透明度0*/
    }

    100% {
        -webkit-transform: translateY(0);
        /* 跑到最後終止的位置 在Y-0(最上方)*/
        transform: translateY(0);
        opacity: 1;
        /*透明度顯示*/
    }
}

/*上下浮動*/
@keyframes jump {
    0% {
        -webkit-transform: translateY(5%);
        transform: translateY(5%);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes run01 {
    0% {
        background-position-x: 200px;
    }

    100% {
        background-position-x: -30px;
    }
}

.pageIndex #page .swiper-slide img {
    height: auto;
    transform: scale(1);
    animation: banner-img 2.8s forwards;
    animation-delay: 3s;
}

@keyframes banner-img {
    0% {
        opacity: 0.5;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}





/*※※※※※【【  固定區塊不動↓↓↓  】】※※※※※*/
/*預設解除背景輪播*/
#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;
    }
}

.header_area.sticky {
    position: fixed;
}


/*※※※※※【【  此案件更動處↓↓↓  】】※※※※※*/







/*   HEADER區塊   */
/*※※※※※【【  固定區塊不動↓↓↓  】】※※※※※*/
.pageIndex .header_area {
    position: fixed;
    width: 100%;
}

.main_header_area {
    background: #fff;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, .1);
}

.main_header_area .container {
    max-width: 1600px;
}

.nav-brand {
    width: 180px;
}

.navigation {
    padding: 5px 0 5px 100px;
}

.header_area {
    padding: 0px;
}

/*主分類按鈕*/
.stellarnav>ul>li>a {
    color: #555;
    padding: 15px 6px;
    height: auto;
    font-size: 16px;
    vertical-align: middle;
}

.stellarnav>ul>li>a:hover {
    color: #777;
}

.stellarnav li.has-sub>a {
    padding: 15px 25px 15px 15px;
}

.stellarnav li.has-sub>a:after {
    display: none;
}

.stellarnav li.has-sub>a:hover:after {
    border-top: 4px solid #ADA17E;
}

/*三角形icon*/
/*其他下拉按鈕*/
.stellarnav>ul>li>ul a {
    background: #fff;
    color: #555;
    padding: 15px;
    font-size: 14px;
    border-bottom: none;
    font-weight: 400;
    transition: all .5s;
    font-size: 16px;
}

.stellarnav>ul>li>ul a:hover {
    background: #f1f1f1;
    padding: 15px 10px 15px 20px;
}

.stellarnav>ul>li.has-sub>ul a {
    padding: 15px;
}

.stellarnav>ul>li.has-sub>ul a:hover {
    padding: 15px 10px 15px 20px;
}

.stellarnav li li {
    border: none;
    margin-bottom: 0;
}

.stellarnav li li.has-sub>a:after {
    border-left: 5px solid #888;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    right: 10px;
}

.stellarnav ul ul li.has-sub>a:hover:after {
    border-top: 4px solid transparent;
}

.me_tp_features {
    display: none;
}

@media screen and (max-width: 1200px) {
    .pageIndex .header_area {
        position: relative;
    }
}

@media screen and (max-width: 1024px) {
    .nav-header {
        position: relative;
    }
}

@media screen and (max-width: 768px) {
    .stellarnav.mobile {
        top: 10px;
    }

    /*漢堡紐*/
    .stellarnav .menu-toggle span.bars span {
        width: 20px;
        height: 1px;
    }

    .nav-header {
        top: 0;
        z-index: 0;
    }

    .nav-brand {
        margin-top: 5px;
    }

    /*主分類*/
    .stellarnav.mobile>ul>li>a {
        vertical-align: middle;
    }

    .stellarnav.mobile>ul>li>a.dd-toggle {
        padding: 0px;
        width: auto;
        top: 10px;
        right: 10px;
    }

    .stellarnav.mobile>ul>li.has-sub>ul a {
        padding: 10px;
    }

    /*其他下拉按鈕*/
    .stellarnav.mobile li.open {
        padding: 0;
    }

    .stellarnav.mobile li.open li.open {
        padding: 3px;
        background: #ddd;
    }

    .stellarnav.mobile li.open li.open>a {
        background: #ddd;
    }

    .stellarnav.mobile li li a.dd-toggle {
        width: 40px;
        height: 40px;
    }

    .stellarnav.mobile li a {
        border-bottom: none;
    }

    .stellarnav>ul>li>ul a:hover {
        background: #fff;
    }

    /*叉叉按鈕*/
    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        color: transparent;
    }

    .stellarnav .icon-close {
        position: absolute;
        right: 15px;
    }

}

/*※※※※※【【  此案件更動處↓↓↓  】】※※※※※*/

.nav-brand {
    width: 310px;
    margin-top: 5px;
}

.stellarnav>ul>li {
    width: 16%;
    max-width: 140px;
    text-align: center;
    position: relative;
}

.stellarnav>ul>li:before {
    content: "|";
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 100;
    color: #ccc;
}

.stellarnav>ul>li:last-child:before {
    display: none;
}

.stellarnav>ul>li>a {
    padding: 20px 6px;
    vertical-align: middle;
    font-size: 17px;
    letter-spacing: 2px;
}

.stellarnav>ul>li>a:hover {
    color: #499A9E;
    font-weight: 500;
}

.stellarnav li.has-sub>a {
    padding: 20px 25px 20px 15px;
}

.stellarnav li.has-sub>a:hover:after {
    border-top: 4px solid #499A9E;
}

/*三角形icon*/

@media screen and (max-width: 1200px) {
    .navigation {
        padding: 5px 0 5px 100px;
    }

    .nav-header {
        top: 20px;
    }

    .nav-brand {
        width: 271px;
        margin-top: -8px;
    }
}

@media screen and (max-width: 1024px) {
    .navigation {
        padding: 10px 0;
    }

    .nav-header {
        top: 10px;
    }

    .stellarnav>ul>li {
        max-width: 110px;
    }

    .stellarnav>ul>li>a {
        padding: 5px;
    }

    .stellarnav li.has-sub>a {
        padding: 5px 25px 5px 5px;
    }
}

@media screen and (max-width: 768px) {
    .stellarnav>ul>li {
        max-width: inherit;
        width: 100%;
        text-align: left;
    }

    .stellarnav.mobile>ul>li {
        border-bottom: none;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        background: transparent;
    }
}



/* 側邊按鈕*/
.info_fix>span {
    display: none;
}

.info_fix_links {
    display: block !important;
}

.info_fix_links a {
    background: rgb(187 158 169 / 0%);
    color: #499a9e;
    border: 1px solid #499a9e;
}

.info_fix_links a:hover {
    background: white;
}

.box_link {
    display: none;
}


/*   FOOTER區塊   */

.footer {
    background: #ffffff;
}

.footer_info figure {
    display: flex;
    max-width: 190px;
    padding-top: 20px;
    justify-content: space-around;
}

.footer_menu a {
    background: #ffffff;
    font-size: 16px;
}

.footer_menu a:hover {
    background: #499a9e;
    color: #fff;
    border: none;
}


/*   文章分類管理   */
/*※※※※※【【  固定區塊不動↓↓↓  】】※※※※※*/
/*文章設定*/
.blog_page .main_part {
    max-width: 1400px;
}

.blog_in_page .main_part {
    max-width: 1400px;
}

h5.blog_le_t {
    letter-spacing: 0;
}

.accordion li .link a {
    font-weight: 500;
}

.blog_search input[type=search] {
    border-radius: 0;
}

.blog_le .accordion {
    border-radius: 0;
    border: NONE;
}

.accordion li:not(:last-of-type) {
    border-bottom: 1px solid #fff;
}

.blog_le .accordion>li:hover,
.blog_le .accordion>li.on_this_category {
    background: #499a9e !important;
    transition: all 0.3s;
}

.blog_subbox {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
}

.blog_subbox:before {
    content: none;
}

.subbox_item {
    width: 100%;
    margin-bottom: 0;
    background: #fafafa;
    padding: 15px;
}

.blog_list_le {
    padding: 0;
    width: 100%;
}

.blog_list_ri {
    padding: 12px 0;
    width: 100%;
}

.blog_list_ri em {
    font-weight: bold;
    font-size: 12px;
}

.blog_list_ri p {
    -webkit-line-clamp: 2;
    line-height: 160%;
    font-size: 17px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.blog_list_le {
    position: relative;
    height: auto;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.blog_list_le img {
    min-width: 100%;
    display: block;
    width: 100%;
    margin: 0 auto;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

h4.blog_category_title {
    border-bottom: 1px #e6e6e6 solid;
    color: #499a9e;
    font-weight: 400;
}

.submenu a:hover {
    background: #666;
    color: #FFF;
}

.submenu a {
    display: block;
    position: relative;
    color: #666;
    padding: 13px 6px 12px 29px;
    letter-spacing: 1px;
    font-size: 12px;
}

.subbox_item a {
    display: block;
}

.subbox_item a:before,
.subbox_item a:after {
    content: none;
}

.subbox_item a:hover .blog_list_le:before,
.subbox_item a:hover .blog_list_le:after {
    opacity: 1;
}

.subbox_item a .blog_list_le:after {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 8;
    background: rgba(0, 0, 0, .7);
    opacity: 0;
    transition: all .4s;
}

.subbox_item a .blog_list_le:before {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    content: 'VIEW MORE +';
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-shadow: 0 0 10px black;
    filter: drop-shadow(0px 0px 10px black);
    transform: translate(-50%, -50%);
    width: 148px;
    height: 40px;
    left: 50%;
    top: 50%;
    z-index: 9;
    opacity: 0;
    transition: ease all .4s;
}

.blog_list_ri h5 {
    font-size: 24px;
    color: #499a9e;
}

/*內頁*/
.blog_back {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    justify-content: center;
}

.blog_back a {
    width: 100%;
}

.blog_back a.article_btn_back {
    background: #499a9e;
}

.blog_page .show_content {
    margin: auto;
    padding: 30px 30px;
    background: #fff;
}

.blog_le .accordion li .link:last-child {
    border-bottom: 1px solid #eaeaea;
}


.accordion li .link {
    font-size: 17px;
}


@media screen and (max-width: 1024px) {
    .blog_subbox {
        grid-template-columns: 1fr 1fr;
    }
}


@media screen and (max-width: 768px) {}









/*   促銷方案&小撇步文章分享   */
/*※※※※※【【  固定區塊不動↓↓↓  】】※※※※※*/
/*首頁*/
.news_part .title_i_box h4 {
    color: #555;
    font-size: 26px;
}

.news_list ul li a:hover {
    background: #eee;
}

.animated-arrow {
    background: #508fa1;
    color: #fff;
}

.title_i_box h4 {
    font-size: 26px;
    color: #82191d;
    font-weight: bold;
    letter-spacing: 1px;
}

.title_i_box h4:before {
    content: "News";
    display: block;
    color: #ACACB2;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 1px;
}


/*詳細頁*/
.show_content .edit {
    line-height: 180%;
    color: #494949;
}

.promotion_title {
    border-bottom: 1px solid #999;
    padding-bottom: 10px;
}

.promotion_title em {
    display: none;
}

.promotion_title span {
    border: none;
    color: #555;
    padding: 0;
    margin: 0;
}

.promotion_title h2 {
    display: block;
    font-size: 30px;
    color: #499a9e;
}

.other_promotion {
    margin-top: 200px;
}

.other_promotion:before {
    content: "Read More";
    display: block;
    color: #aaa;
    padding: 10px 15px;
}

.other_promotion li {
    border-bottom: 1px solid #ddd;
    width: 100%;
    margin-left: 0;
}

.other_promotion li a {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 15px;
    border: none;
}

.other_promotion li a:before {
    display: none;
}

.other_promotion li a:after {
    display: none;
}

.other_promotion .pmtTime {
    width: 150px;
}

.other_promotion .pmtTime span {
    float: left;
}

.other_promotion .pmtTitle {
    width: calc(100% - 160px);
}

.other_promotion .pmtTitle span {
    display: none;
}

.other_promotion .pmtTitle h3 {
    font-size: 14px;
    height: auto;
    min-height: auto;
    margin: 0;
}

.news_related {
    background: #ffffff;
}

.news_related h6 span {
    display: none;
}

.lastPage {
    background: #499a9e;
}

@media screen and (max-width: 768px) {
    .promotion_title h2 {
        font-size: 17px;
    }
}

@media screen and (max-width: 450px) {
    .other_promotion li a {
        flex-wrap: wrap;
    }
}


/*※※※※※【【  此案件更動處↓↓↓  】】※※※※※*/
/*首頁*/
.animated-arrow {
    background: #508fa1;
}

.news_list ul li {
    margin-bottom: 5px;
}

.news_list ul li a {
    background: #fafafa;
}

.news_list ul li p:after {
    right: 20px;
}

.other_promotion:before {
    color: #499a9e;
    font-weight: bold;
}


.news_list ul li span {
    font-size: 17px;
}

.news_list ul li p {
    font-size: 17px;
}



#content_main .news_part {
    background: url(https://pic03.eapple.com.tw/giovanelifeclinic/news_bg.jpg);
    max-width: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.news_list ul {
    width: 1200px;
}

@media screen and (max-width: 1200px) {
    .news_list ul {
        width: 768px;
    }
}

@media screen and (max-width: 768px) {
    .news_list ul {
        width: 500px;
    }
}

@media screen and (max-width: 600px) {
    .news_list ul {
        width: 390px;
    }
}


@media screen and (max-width: 390px) {
    .news_list ul {
        width: 350px;
    }
}


/*   相簿管理(有分類)   */
/*※※※※※【【  固定區塊不動↓↓↓  】】※※※※※*/
/*大分類*/
.album_page .main_part {
    max-width: 1600px;
}

.show-list {
    display: flex;
    flex-wrap: wrap;
}

.show-list .item {
    width: 33.3%;
    padding: 2%;
    margin: 0;
}

.show-list .item:hover .show_name {
    color: #666;
}

.show-list .show_name {
    text-align: center;
    font-weight: 500;
}

.overlay {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.show-list .show_pic img {
    min-height: 20vw;
    object-fit: cover;
}

/*次分類*/
.album_class_page .main_part {
    max-width: 1600px;
}

.subalbum-menu h2 {
    color: #555;
    text-align: center;
    display: block;
}

.subalbum-menu h2 .block {
    display: none;
}

.other_subalbum {
    display: flex;
    flex-wrap: wrap;
}

.other_subalbum li {
    width: 33.3%;
    padding: 2%;
    margin: 0;
}

.other_subalbum li p {
    text-align: center;
    margin-top: 10px;
    color: #555;
    letter-spacing: 2px;
}

/*相片頁*/
.album_info_page .main_part {
    max-width: 1600px;
}

.pic-list {
    display: flex;
    flex-wrap: wrap;
}

.pic-list .item {
    padding: 0;
    margin: 10px;
    width: 33.3%;
    padding: 2%;
    margin: 0;
}

.pic-list .item h6 {
    font-weight: 500;
}

.pic-list .show_pic img {
    min-height: 20vw;
    object-fit: cover;
}

.other_album {
    margin-top: 200px;
}

.album_fixed_title {
    background: transparent;
}

.other_album_choice li {
    background: #333;
}

@media screen and (max-width: 768px) {

    /*主分類*/
    .show-list .item {
        width: 50%;
    }

    .show-list .show_pic img {
        min-height: 35vw;
    }

    /*次分類*/
    .other_subalbum li {
        width: 50%;
    }

    /*相片頁*/
    .pic-list .item {
        width: 50%;
    }

    .pic-list .show_pic img {
        min-height: 35vw;
    }
}

@media screen and (max-width: 450px) {

    /*相簿*/
    .show-list .show_pic img {
        min-height: 140px;
    }

    .pic-list .show_pic img {
        min-height: 140px;
    }
}

/*※※※※※【【  此案件更動處↓↓↓  】】※※※※※*/












/*   聯絡我們(表單功能)   */
/*※※※※※【【  固定區塊不動↓↓↓  】】※※※※※*/
/*整體設定*/
.blank_letter {
    font-family: 'Jost', 'Noto Sans TC', sans-serif;
    color: #444;
    font-size: 24px;
    padding-top: 0;
}

.contact_content .information_right {
    width: calc(100% - 310px);
    padding-left: 50px;
}

/*資訊區塊*/
.list_before.info li {
    padding-left: 40px;
}

/*表格區塊*/
.TEL:before,
.TEL2:before,
.PHONE:before,
.FAX:before,
.TAXID:before,
.MAIL:before,
.ADD:before,
.ADD2:before {
    font-weight: lighter;
}

button,
input,
optgroup,
select,
textarea {
    outline: none;
}

input[type="checkbox"],
input[type="radio"] {
    margin: 5px 5px 5px 10px;
}

input[type="checkbox"]:nth-child(1),
input[type="radio"]:nth-child(1) {
    margin: 5px 5px 5px 0px;
}

.form select {
    background: transparent;
    color: #444;
    border: none;
    border-bottom: 1px solid #aaa;
    width: 100%;
}

.form select option {
    background: #eee;
}

.contact_form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 15px 0;
}

.contact_form li {
    width: 48%;
    padding-left: 0;
    padding: 15px 0;
}

.contact_form li input.noborder {
    padding-left: 10px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #aaa;
}

.contact_form li textarea.noborder {
    border: 1px solid #aaa;
    padding-left: 10px;
    background: transparent;
}

.contact_form li.last {
    width: 100%;
}

.contact_form li.last cite {
    margin-left: 10px;
    background: #555;
    color: #eee;
}

.contact_form li.last blockquote,
.contact_form li.last cite {
    border: 1px #ccc solid;
}

.contact_form li.last blockquote input {
    color: #333;
}

.contact_form li.last blockquote:hover input,
.contact_form li.last cite:hover input {
    letter-spacing: 3px;
}

.information_right .contact_form li.last blockquote input {
    color: #444;
}

.contact_form li .form__label {
    color: #444;
    width: 100%;
    text-align: left;
    margin-left: 0;
    margin-bottom: 5px;
}

.contact_form li .form__insert {
    color: #444;
    width: 100%;
}

.noborder {
    padding: 10px;
}

@media screen and (max-width: 768px) {

    /*整體設定*/
    .blank_letter {
        padding-top: 0;
    }

    .blank_letter.f {
        margin-top: 50px;
    }

    /*資訊區塊*/
    .list_before {
        margin-top: 10px;
    }

    /*表格區塊*/
    .contact_content .information_right {
        width: 100%;
        padding-left: 10px;
    }
}

@media screen and (max-width: 600px) {
    .contact_content {
        padding: 0;
    }
}

@media screen and (max-width: 450px) {
    .contact_form li {
        width: 100%;
    }

    .blank_letter {
        padding-top: 0;
        font-size: 17px;
    }

    .blank_letter.f {
        margin-top: 50px;
    }

}

/*※※※※※【【  此案件更動處↓↓↓  】】※※※※※*/

@media screen and (max-width: 450px) {

    .contact_form li.last blockquote,
    .contact_form li.last cite {
        width: 140px;
    }
}


.module_i_news li a:after {
    background: rgb(255 255 255 / 0%);
}





/*   購物車(商品展示)   */
/*※※※※※【【  固定區塊不動↓↓↓  】】※※※※※*/

/*預設購物車版面 產品分類選單在左側 商品內頁詳細介紹下表單更改樣式 by shint at 2023.1.5  */
.product_page .main_part {
    max-width: 1500px;
}

.product_info_page .main_part {
    max-width: 1200px;
}

.product_page .show_content,
.product_info_page .show_content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.product_page .product-layer-two {
    position: relative;
    width: 220px;
    letter-spacing: 1px;
    border-right: 1px solid #ccc;
    min-height: 30vw;
}

.product_page .products-list,
.product-wrapper {
    width: calc(100% - 270px);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

ul.page {
    width: 100%;
}

.product-layer-two li ul {
    position: static;
    margin-top: 10px;
    display: block !important;
    width: 100%;
    margin-left: 0;
}

.product-layer-two li:hover ul {
    border: none !important;
    display: block !important;
}

.product-layer-two li li {
    display: block;
    padding: 5px 10px;
    transition: all ease .3s;
}

.product-layer-two li li a {
    padding: 0;
}

.product-layer-two li li:hover>a {
    background: #fff;
    color: #ADA17E;
}

.product-layer-two>li {
    width: 100%;
    max-width: 100%;
    padding: 0;
    text-align: left;
    border-bottom: 1px dotted #ccc;
}

.product-layer-two>li ul>li+li {
    margin-top: 5px;
}

.product_info_page .product-layer-two {
    display: none;
}

.product_info_page .products-list,
.product-wrapper {
    width: 100%;
}

.product-layer-two li li:hover {
    margin-left: 15px;
}

.product-layer-two li li>a:before {
    content: "";
    position: absolute;
    width: 12px;
    height: 8px;
    background: #fff;
    left: 0;
    margin-left: -20px;
    top: 50%;
    margin-top: -4px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.product-layer-two li li:hover>a:before {
    background: #ADA17E;
}

.product_info_page .half_box {
    width: 100%;
    float: none;
    padding-right: 0;
}

.product_info_page .half_box li.btn_blankTop {
    margin-top: 50px;
    justify-content: space-between;
    display: flex;
}

.product_info_page .half_box li.btn_blankTop input {
    width: calc(50% - 10px);
    background-image: none;
    padding: 0;
    text-align: center;
}

@media screen and (max-width: 1200px) {
    .products-list .item {
        width: calc(100% / 3);
    }
}

@media screen and (max-width: 980px) {
    .products-list .item {
        width: 50%;
    }
}

@media screen and (max-width: 768px) {

    .product-layer-two,
    .products-list,
    .product-wrapper {
        width: 100%;
    }

    .product-layer-two {
        margin-right: 0;
    }

    .product-layer-two>li {
        margin-bottom: 5px;
    }

    .product_page .product-layer-two,
    .product_page .products-list {
        width: 100%;
        border-right: none;
    }

    .product_page .show_content>a {
        order: 1;
    }

    .product_page ul.products-list {
        order: 2;
    }

    .product_page ul.page {
        order: 3;
    }

    .product_page ul.product-layer-two {
        order: 4;
    }
}

@media screen and (max-width: 600px) {
    .products-list .item {
        width: 100%;
        max-width: 350px;
        margin: 20px auto;
        display: block;
    }
}

/*清單頁_側邊選單*/
.product_page .product-layer-two {
    border-right: none;
}

.product-layer-two li li {
    border: none;
    padding: 5px 15px;
    background: transparent;
}

.product-layer-two li li a {
    background: transparent;
    font-weight: 400;
    color: #555;
    padding-left: 20px;
}

.product-layer-two li li:hover>a {
    color: #ADA17E;
    background: transparent;
}

.product-layer-two li li:hover>a:before {
    background: #ADA17E;
}

.product-layer-two li a {
    background: transparent;
    border: none;
}

.product-layer-two li ul {
    margin-top: 0;
}

.product-layer-two>li {
    border-bottom: none;
    font-weight: 500;
}

.product-layer-two>li>a {
    color: #555;
}

.product-layer-two li li>a:before {
    background: #ccc;
    margin-left: 0;
}

.product-layer-two li.active a {
    border: none;
    color: #ADA17E;
}

/*清單頁_商品區*/
.products-list .pic {
    padding-bottom: 65%;
}

.products-list .more {
    border: 1px solid #888;
    color: #555;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 2px;
}

.products-list .item a:hover .more {
    background: #555;
    letter-spacing: 4px;
}

/*詳細頁輪播區*/
.product_pic {
    padding-bottom: 0;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: space-between;
}

.bx-wrapper .bx-viewport {
    border: none;
    background: transparent;
    left: 0;
}

.product_pic .bx-wrapper {
    width: 85%;
    order: 2;
    margin: 0;
    padding: 0;
}

.product_pic #bx-pager {
    padding: 0;
    color: #555;
    width: 12.6%;
    order: 1;
    position: relative;
}

.product_pic #bx-pager h6 {
    display: none;
}

.product_pic #bx-pager a {
    border: none;
    height: auto;
    width: 100%;
    margin: 0;
    margin-bottom: 7px;
}

/*詳細頁商品說明*/
ul.prod {
    line-height: 180%;
    font-weight: 400;
    margin-top: 30px;
}

ul.prod li:nth-child(2) {
    display: none;
}

ul.prod li h3.prod-thumb {
    display: none;
}

.lastPage {
    background: #ADA17E;
}

.prod_related {
    background: #f8f8f8;
}

.related_list li a {
    background: transparent;
}

.related_list li a p {
    margin-top: 10px;
}

/*※※※※※【【  此案件更動處↓↓↓  】】※※※※※*/





.footer_info {
    align-items: center;
}

.footer_info li p {
    line-height: 175%;
    letter-spacing: 1px;
    color: #333;
    font-size: 16px;
}

.footer_info section {
    max-width: 375px;
    width: 100%;
}


/*聯絡我們*/
.contact_content .information_left {
    display: none;
}

.contact_form li.last blockquote,
.contact_form li.last cite {
    border: 1px #499a9e solid;
}

.contact_form li.last cite {
    background: #499a9e;
}

.red {
    color: #499a9e;
}

.contact_content {
    text-align: center;
}

.blank_letter {
    padding: 20px 0;
}

/*   內頁BANNER 設定   */
/*內頁BANNER 設定*/
.banner {
    background-color: #545454;
    padding: 140px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner.banA {
    background-image: url(https://pic03.eapple.com.tw/ycmclinic/banblog.jpg);
}

.banner.banB {}

.banner.banC {}

.banner.banD {}

.banner.banE {}

.banner.banF {}

.banner.banblog {
    background-image: url(https://pic03.eapple.com.tw/ycmclinic/banblog.jpg);
}

.banner h5 {
    position: relative;
    z-index: 1;
    color: #ffffff;
    font-weight: 600;
    font-size: 30px;
    text-shadow: 0px 1px 10px #000000;
    margin-top: -35px;
    letter-spacing: 3px;
}

.banner h5:before {
    content: "守護腸道與乳房健康的專科診所" !important;
    position: absolute;
    top: 49px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 16px;
    width: 380px;
    letter-spacing: 2px;
}


/*   其他設定   */
/*※※※※※【【  固定區塊不動↓↓↓  】】※※※※※*/
/*麵包屑*/
.path {
    display: none;
}

/*下拉編輯頁設定*/
.other_select_page .promotion_title {
    display: none;
}

.other_select_page .other_promotion {
    display: none;
}

/*頁碼*/
.page strong,
.page a {
    border-radius: 0;
    color: #555;
    border: 1px #555 solid;
}

.page strong,
.page a:hover {
    background: #333;
}


@media screen and (max-width: 768px) {

    /* 開啟手機板下方按鈕所需設定 */
    #bottom_menu {
        display: none;
    }

    #to_top {
        bottom: 60px;
    }
}

/*※※※※※【【  此案件更動處↓↓↓  】】※※※※※*/

.header_area.sticky {
    position: fixed;
}