@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n)

*/
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=ZCOOL+XiaoWei&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');


body {
    font-family: "Space Grotesk", sans-serif;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/


/*上方選單右邊設定 臉書/LINE/電話/信箱
.tp_links a:before {寬高大小設定}
.tp_links a.me_tp_fb {}
.tp_links a.me_tp_fb:before {背景換圖/建議.SVG}
.tp_links a.me_tp_line {}
.tp_links a.me_tp_line:before {背景換圖/建議.SVG}
.tp_links a.me_tp_call {}
.tp_links a.me_tp_call:before {背景換圖/建議.SVG}
.tp_links a.me_tp_mail {}
.tp_links a.me_tp_mail:before {背景換圖/建議.SVG}
*/

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*反白顏色*/
::-moz-selection {
    background: #A40B5E;

    color: #fff;
}

::selection {
    background: #A40B5E;

    color: #fff;
}

body {
    overflow: overlay;
    overflow-x: hidden;
}

&::-webkit-scrollbar {
    background: #fff;
    width: 7px;
}

&::-webkit-scrollbar-button {
    display: none;
    background: #fff;
    border-radius: 0;
}

&::-webkit-scrollbar-track-piece {
    background: #fff;
}

&::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: linear-gradient(139deg, #7DB9E4, #A40B5E);

}

&::-webkit-scrollbar-track {
    box-shadow: transparent;
}


#content {
    background: #EAEAEA;
}





/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/* 頁面的麵包屑 首頁/頁面名稱/ */
.path {
    display: none;
}



#content_main {
    background: #EAEAEA;
    margin: 0;
    min-height: 140vh;
}








/*  */




.bannerindex {
    background: #EAEAEA;
    display: none;
}




/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*選單設定*/
.header_area {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 0;
}

.header_area::before {
    content: "";
    display: block;
    width: 90%;
    height: 1px;
    background-color: #A0A0A0;
    position: fixed;
    top: 9vh;
    left: 50%;
    transform: translate(-50%, 0);
    transition: all 0.5s;
}
.header_area.sticky::before{
    width: 0;
    transition: all 0.5s;
    transition-delay: 1s;
}

.header_area:has(.stellarnav.active)::before {
    background-color: #fff;
    transition: all 0.5s;
}


.header_area::after {
    content: "";
    display: block;
    width: 100%;
    height: 0px;
    background-color: #ffffff46;
    position: absolute;
    top: 0;
    left: 0;
    backdrop-filter: blur(10px);
    z-index: -2;
    transition: all 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}
.header_area.sticky::after {
    height: 83px;
    transition: all 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}


.main_header_area {
    background: transparent;
}

.main_header_area .container {
    max-width: 90%;
}

.me_tp_features {
    display: none;
}


/*LOGO設定*/



.nav-brand img {
    width: 100%;
    max-width: 100%;
}


.nav-brand {
    width: 100%;
    transition: all 0.5s;
}

.sticky .nav-brand {
    width: 230px;
    transition: all 0.5s;
}

.nav-header {}

.sticky .nav-header {
    transition: all 0.3s;
}



/* 開場logo、選單 */



.nav-header {
    max-width: 210px;
    position: absolute;
    top: 2.5vh;
}


.nav-header img {
    filter: contrast(0) brightness(1.1);
    position: relative;
    opacity: 1;
    transition: all 0.5s;
}

.header_area:has(.stellarnav.active) .nav-header img {
    filter: contrast(0) brightness(100);
    transition: all 0.5s;
}


/*  */
.header_area .main_header_area {
    position: fixed;
    background: transparent;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    z-index: -1;
    opacity: 1;
    animation: action-nav 0.5s forwards cubic-bezier(0.73, 0.08, 0.11, 0.99);
    animation-delay: 5s;
    transition: all 0.5s;
}

.header_area.sticky .main_header_area {
    background: transparent;
    height: 0;
    transition: all 0.5s;
}

.header_area .me_tp_features {
    display: block;
    position: fixed;
    top: 40px;
    right: 210px;
    margin-bottom: 0;
    transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);

}

.header_area.sticky .me_tp_features {
    top: 20px;
    transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}


.header_area .stellarnav .menu-toggle,
.stellarnav .call-btn-mobile,
.stellarnav .location-btn-mobile {
    display: block;
    position: fixed;
    top: 3vh;
    right: 5%;
    padding: 0;
    transition: all 0.5s;
    pointer-events: all;
}

.header_area.sticky .stellarnav .menu-toggle,
.stellarnav .call-btn-mobile,
.stellarnav .location-btn-mobile {
    transition: all 0.5s;
}

/* 


@keyframes action-nav {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
 */


/* 漢堡 */

.stellarnav .menu-toggle {
    text-align: center;
    opacity: 1;
}

.stellarnav .menu-toggle:after {
    content: "MENU";
    font-size: 24px;
    letter-spacing: 0.2em;
    text-align: center;
    color: #A0A0A0;
    font-weight: bold;
    transition: all 0.5s;
}


.stellarnav.active .menu-toggle:after {
    color: #fff;
    content: "CLOSE";
    transition: all 0.5s;
}



@keyframes action-menu {
    0% {
        opacity: 0;
        transform: translate(-100%, 0%);
    }

    100% {
        opacity: 1;
        transform: translate(0%, 0%) scale(1);
    }

}

.stellarnav.desktop .menu-toggle span.bars span {
    display: block;
    position: absolute;
    width: 43px;
    height: 2px;
    background: #fff;
    margin: 0;
    left: 0;
    transform: translate(-50%, 0px);
    transition: 0.5s;
}

.stellarnav.desktop .menu-toggle span.bars span:nth-of-type(3) {
    top: 10px;
}

.stellarnav.desktop .menu-toggle:hover span.bars span:nth-child(1) {
    left: -10px;
    transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.stellarnav.desktop .menu-toggle span.bars span:nth-child(2) {
    display: none;
    opacity: 0;
    transition: all 1s;
}

.stellarnav.desktop .menu-toggle:hover span.bars span:nth-child(3) {
    left: 10px;
    transition: all 0.85s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}




/* 漢堡關 */

.stellarnav .menu-toggle span.bars {
    display: none;
    top: -12px;
}

.stellarnav.desktop.active .menu-toggle span.bars span:nth-child(1) {
    margin: 0;
    transform: translate(-50%, 0px) rotate(35deg);
    transition: all 0.3s;
}

.stellarnav.desktop.active .menu-toggle span.bars span:nth-child(2) {}

.stellarnav.desktop.active .menu-toggle span.bars span:nth-child(3) {
    top: 0;
    margin: 0;
    transform: translate(-50%, 0px) rotate(-35deg);
    transition: all 0.3s;
}



.stellarnav.desktop.active .menu-toggle:hover span.bars span:nth-child(1) {
    left: 0;
}

.stellarnav.desktop.active .menu-toggle:hover span.bars span:nth-child(3) {
    left: 0;

}





/* 未開啟 */

.stellarnav.desktop>ul {
    display: flex !important;
    flex-direction: row;
    pointer-events: all;
    width: 100%;
    height: 100%;
    background: transparent;
    padding: 15vh 5% 15vh;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 0;
    text-align: center;
    position: relative;
    top: 0%;
    left: 0%;
    z-index: -5;
    opacity: 0;
    transform-origin: 50% 0;
    gap: 2%;
    transform: scale(1, 0);
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.stellarnav.desktop {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -5;
    line-height: normal;
    background-color: transparent;
    pointer-events: none;
    transition: 1s;
}




/* 開啟 */
.stellarnav.desktop.active>ul {
    opacity: 1;
    transform: scale(1);
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.stellarnav.desktop>ul::before {
    content: "";
    display: block;
    width: 100%;
    height: 85vh;
    position: absolute;
    top: 0px;
    left: 0;
    z-index: -2;
    background: linear-gradient(139deg, #7db9e4c4 0%, #c8458cd1 60%, #f25daec7 85%, #b8377dc7 100%);
    backdrop-filter: blur(80px);
    transform-origin: 0 0;
    transform: scale(1, 0);
    border-radius: 0 0 20px 20px;
    border: 1px #fff solid;
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.stellarnav.desktop.active>ul::before {
    transform: scale(1, 1);
    transition: all 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

/* .stellarnav.desktop>ul::after {
    content: "DR. MOK DERMATOULOGY CLINIC";
    display: block;
    color: #ffffff;
    font-size: 14px;
    position: absolute;
    bottom: 18vh;
    right: 5%;
    opacity: 0;
    letter-spacing: 0.1em;
    transition: all 0.5s;
}

.stellarnav.desktop.active>ul::after{
    opacity: 1;
    transition: all 0.5s;
    transition-delay: 1s;
} */



.stellarnav.desktop.active>ul::after {}





@keyframes nav-left {
    0% {
        transform: scale(1, 0);
    }

    100% {
        transform: scale(1, 1);
    }

}

@keyframes line-up {
    0% {
        height: 0%;
    }

    100% {
        height: 100%;
    }
}

@keyframes nav-img {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }

}


/* BAR */


/* 購物籃 */
.tp_links {
    display: none;
}

.box_search input[type=text] {
    display: none;
    background: url(../images/search-icon.png) no-repeat 9px center #fff;
    border: 0;
    padding: 2px 0px 4px 42px;
    width: calc(20% - 42px);
    border-radius: 10em;
    transition: all .5s;
    outline: none;
    background-color: transparent;
    border-bottom: 1px #3F3F3F solid;
    border-radius: 0;
    transition: all 0.3s;
}

.box_search input[type=text]:hover {
    color: #3F3F3F;
    transition: all 0.3s;
}

.box_search input[type=text]:focus {
    color: #3F3F3F;
    transition: all 0.3s;
}

.shop_search_btn {
    display: none;
    background: #3F3F3F;
    color: #fff;
    font-size: 13px;
    border: none;
    border-radius: 0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    padding: 4px 15px;
    cursor: pointer;
}

.box_search {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 60%;
    margin-bottom: 0;
    margin-right: 30px;
}

.me_tp_features a {
    margin: 0 0;
}

.me_tp_features a.tp_btn_cart {
    margin-right: 20px;
}

.me_tp_features a.tp_btn_cart span {
    display: none;
}

.me_tp_features a.tp_btn_notice span {
    display: none;
}










/* 選項 */
.stellarnav>ul>li>a {
    width: 100%;
    margin: 0;
    padding: 20px 30px;
    color: #fff;
    display: flex;
    text-transform: uppercase;
    position: relative;
    font-size: 16px;
    line-height: 20px;
    height: auto;
    overflow: visible;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    opacity: 1;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: baseline;
    flex-direction: column;
    margin-bottom: 0;
}

.stellarnav>ul>li>a b {
    display: inline;
    line-height: 150%;
    height: auto;
    z-index: 1;
}

.stellarnav>ul>li>a b:nth-child(1) {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.2em;
}

.stellarnav>ul>li>a b:nth-child(2) {
    font-size: 18px;
    word-break: keep-all;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-right: 20px;
}

.stellarnav>ul>li>a:hover b:nth-child(1) {
    transition: all 0.5s;
}

.stellarnav>ul>li>a:hover b:nth-child(2) {
    transition: all 0.5s;
}


.stellarnav>ul>li:nth-last-of-type(1) {
    display: none;
}


.stellarnav li {
    opacity: 1;
    width: 100%;
}

.navigation {
    display: block;
    width: 100%;
    position: relative;
}

.stellarnav>ul>li>a:hover b {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
}

.stellarnav>ul>li::before {
    /* content: ""; */
    display: inline-block;
    width: 200px;
    height: 200px;
    border-radius: 200px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 5%;
    pointer-events: all;
    cursor: pointer;
}





/* 選單線 延遲 */

.stellarnav li:nth-child(2):before {}

.stellarnav li:nth-child(3):before {
    animation-delay: 0.3s;
}

.stellarnav li:nth-child(4):before {
    animation-delay: 0.4s;
}

.stellarnav li:nth-child(5):before {
    animation-delay: 0.5s;
}

.stellarnav li:nth-child(6):before {
    animation-delay: 0.6s;
}

.stellarnav li:nth-child(7)::before {
    animation-delay: 0.7s;
}

.stellarnav li:nth-child(8)::before {
    animation-delay: 0.8s;
}




@keyframes line-left-right {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }

}




/* 字 動畫 */



.stellarnav>ul>li {
    display: flex;
    width: calc(100% / 4 - 2%);
    opacity: 0;
    transform-origin: 0% 0%;
    align-items: flex-start;
    position: relative;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.5s;
}

.stellarnav.active>ul>li {
    animation: up 1s cubic-bezier(0.73, 0.08, 0.11, 0.99) forwards;
}

.stellarnav li.has-sub > a:after {
    border-top: 8px solid #fff;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    right: 5%;
    border-radius: 11px;
    transition: all 0.5s;
}
.stellarnav li.has-sub > a:hover:after {
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.5s;
}

.stellarnav>ul>li:nth-of-type(1) {
    animation-delay: 0s;
}

.stellarnav>ul>li:nth-of-type(2) {
    animation-delay: 0.05s;
}

.stellarnav>ul>li:nth-of-type(3) {
    animation-delay: 0.1s;
}

.stellarnav>ul>li:nth-of-type(4) {
    animation-delay: 0.15s;
}

.stellarnav>ul>li:nth-of-type(5) {
    animation-delay: 0.20s;
}

.stellarnav>ul>li:nth-of-type(6) {
    animation-delay: 0.25s;
}

.stellarnav>ul>li:nth-of-type(7) {
    animation-delay: 0.30s;
}

.stellarnav>ul>li:nth-of-type(8) {
    animation-delay: 0.35s;
}



.stellarnav.active>ul>li:nth-last-of-type(1) {
    display: none;
}


/* 下拉 */


.stellarnav>ul>li.has-sub>a {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.stellarnav>ul>li.has-sub>a::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #7db0db;
    backdrop-filter: blur(1px);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0;
    transition: all 0.5s;
}

.stellarnav>ul>li.has-sub:hover>a::before {
    opacity: 1;
    transition: all 0.5s;
}


.stellarnav>ul>li.has-sub:hover {
    background-color: #fff;
    transition: all 0.5s;
}

.stellarnav>ul>li.has-sub:hover>a {
    color: #fff;
    transition: all 0.5s;
}

.stellarnav ul ul {
    width: 100%;
    height: 100%;
    background: transparent;
    max-width: 100%;
    position: relative;
    opacity: 0;
    pointer-events: none;
    transform-origin: 0 0;
    transform: scale(1, 0);
    transition: all 0.5s;
}

.stellarnav>ul>li:hover>ul {
    opacity: 1;
    pointer-events: all;
    transform: scale(1, 1);
    transition: all 0.5s;
}


.stellarnav li li {
    display: block;
    border: 0;
    margin-bottom: 0;
    background: transparent;
    color: #fff;
    border-bottom: 1px #ffffff85 solid;
    transition: all 0.3s;
}

.stellarnav li li:nth-child(1) {}

.stellarnav li li:nth-last-child(1) {}

.stellarnav li li:hover {
    background: transparent;
    z-index: 100000;
    transition: all 0.3s;
}

.stellarnav li li a {
    padding: 20px 25px;
    display: flex;
    color: #707070;
    font-size: 18px;
    transition: all 0.3s;
    align-items: center;
}


.stellarnav li li a::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    border-right: 1px #7DB9E4 solid;
    border-bottom: 1px #7DB9E4 solid;
    transform: rotate(-45deg);
    vertical-align: middle;
    margin-right: 10px;
}




.stellarnav li li a:hover {
    color: #707070;
    background-color: #7db9e44f;
    transition: all 0.3s;
}


@keyframes ul-show {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}

@keyframes up {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}


/* 個別選項圖片 */


/* .stellarnav>ul>li.has-sub:nth-of-type(2):hover>a {
    background-image: url(https://pic03.eapple.com.tw/drmok/icon-07.png );
}

.stellarnav>ul>li.has-sub:nth-of-type(3):hover>a {
    background-image: url(https://pic03.eapple.com.tw/drmok/icon-08.png );
}

.stellarnav>ul>li.has-sub:nth-of-type(4):hover>a {
    background-image: url(https://pic03.eapple.com.tw/drmok/icon-09.png );
}

.stellarnav>ul>li.has-sub:nth-of-type(5):hover>a {
    background-image: url(https://pic03.eapple.com.tw/drmok/icon-10.png );
}

.stellarnav>ul>li.has-sub:nth-of-type(6):hover>a {
    background-image: url(https://pic03.eapple.com.tw/drmok/icon-13.png );
} */






@media screen and (min-width: 768px) {
    .stellarnav ul ul {
        display: block !important;
    }

}
















/* 子分類 */
.stellarnav ul ul ul {
    position: relative;
    top: 0;
    left: 0;
}

.stellarnav ul ul ul li a {
    padding: 15px 10px;
    padding-left: 20px;
    transition: all 0.3s;
}

.stellarnav ul ul ul li a:hover {
    background: #00000023;
    transition: all 0.3s;
}


@media screen and (max-width: 1440px) {}



@media screen and (max-width: 1024px) {
    .stellarnav.desktop>ul {
        justify-content: space-around;
    }

    .stellarnav>ul>li:nth-of-type(5) {
        margin-left: 0%;
    }

    .stellarnav>ul>li>a b:nth-child(1) {
        font-size: 24px;
    }

    .stellarnav>ul>li::before {
        width: 120px;
        height: 120px;
    }

    .nav-header {
        position: absolute;
        text-align: center;
    }
}


@media screen and (max-width: 768px) {
    .stellarnav.mobile.left>ul {
        max-width: 100%;
        background: #111;
        border: none;
    }

    .nav-header {
        z-index: 0;
    }

    .stellarnav.mobile>ul>li>a {
        display: flex;
        align-items: center;
        padding: 30px 0;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        color: #fff;
        background: #b24a3d;
    }

    .stellarnav .icon-close:after,
    .stellarnav .icon-close::before {
        border-bottom: solid 3px #fff;
    }

    .stellarnav.mobile li a {
        border-bottom: none;
    }

    .stellarnav .menu-toggle span.bars span {
        background: #fff;
        transition: all 0.3s;
    }

    .sticky .stellarnav .menu-toggle span.bars span {
        background: #666;
        transition: all 0.3s;
    }

    .nav-header {
        opacity: 0;
        transition: all 0.3s;
    }

    .sticky .nav-header {
        opacity: 1;
        transition: all 0.3s;
    }

    .stellarnav>ul>li::before {
        display: none;
    }

    .stellarnav>ul>li {
        width: 100%;
    }

    .stellarnav>ul>li:nth-of-type(3) {
        margin-left: 0;
    }

    .stellarnav.mobile li.open {
        background: #000;
        padding: 0;
    }

    .stellarnav li li {
        margin-bottom: 0px;
        background: #000;
    }

    .stellarnav li li:hover {
        background: #000;
    }

    .stellarnav li li a {
        color: #fff;
        font-weight: 1000;
        text-align: center;
    }

    .stellarnav.mobile>ul>li>a.dd-toggle {
        top: 35px;
    }

    .sticky .stellarnav .menu-toggle span.bars span {
        background: #fff;
    }

    .header_area.sticky .stellarnav .menu-toggle,
    .stellarnav .call-btn-mobile,
    .stellarnav .location-btn-mobile {
        top: 2%;
        transition: all 0.5s;
    }
}












/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*Footer*/
.footer {
    width: 100%;
    border-top: none !important;
    padding: 0;
    height: 23vw;
    opacity: 1;
    background-image: url("https://pic03.eapple.com.tw/drmok/footer-11.png");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 100;
    padding: 40px 0;
}

.footer .center .footer_info{
    width: 100%;
    max-width: 90%;
    display: none;
}


.footer_info ul {
    display: flex;
    vertical-align: top;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.pageIndex .footer {
    opacity: 1;
    /* animation: footer-text forwards 1s; */
    animation-delay: 2.6s;
}

.footer_menu {
    border-bottom: none !important;
    display: flex;
    justify-content: center;
}

.copy {
    width: 90%;
    background: transparent;
    color: #707070;
    border: none;
    margin: 0 auto;
    margin-top: 0;
    padding: 10px 0;
    text-align: right;
    display: none;
}

.copy a {
    color: #707070;
}

.footer_menu a:nth-child(1) {
    display: none;
}

.footer_menu a:hover {
    background: #02642F;
}

.footer_menu a {
    transition: all 0.3s;
}

.box_link {
    display: none;
}

.footer_info li p {
    width: auto;
    color: #707070;
    width: fit-content;
}

.footer_info li p a {
    color: #707070;
}

.footer_menu a {
    display: inline-block;
    padding: 5px 11px;
    border: 0;
    margin: 0 5px;
    font-size: 14px;
    line-height: 100%;
    color: #fff;
    background: transparent;
}

.footer_menu a:hover {
    background: #fff;
    color: #000;
}

.footer_info {
    padding: 0;
    display: flex;
    align-items: center;
    flex-direction: row;
    padding: 0;
    justify-content: center;
}


.center {
    max-width: 95%;
    width: 100%;
    margin: 0 auto;
}

.footer_info li:nth-child(1) {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-end;
    text-align: left;
    width: 100%;
    padding: 0;
    align-items: flex-end;
}

.footer_info li:nth-child(2) {
    display: none;
    position: relative;
    width: 100%;
}


.footer_info li p.add {}

.footer_info li p.add2 {
    margin-top: 10px;
}

.footer_logo {}





/* 浮動 */
.info_fix {
    width: 50px;
    box-sizing: border-box;
    position: fixed;
    bottom: 30px;
    right: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: flex-end;
}
.info_fix_links {
    display: flex !important;
    background: #ffffffde;
    border: 1px #fff solid;
    width: 55px;
    border-radius: 5px 0 0 5px;
    padding-bottom: 0;
}
/* .info_fix_links::before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/drmok/icon-14.png);
    width: 30px;
    height: 50px;
    background-size: 370%;
    background-repeat: repeat-x;
    border-radius: 100%;
    overflow: hidden;
    animation: line 5s infinite linear;
} */



@keyframes line{
    0%{
      background-position: -5% center;
    }
    100%{
     background-position: 105% center;
    }
}






.info_fix>span{
    display: none;
}


.info_fix_links a {
    display: block;
    width: 100%;
    height: 50px;
    overflow: visible;
    border-radius: 5px;
    transition: .3s;
    background: transparent;
    margin-bottom: 0;
    transition: all 0.5s;
}
.info_fix_links a:hover {
    background: #80808080;
    transition: all 0.5s;
}



.info_fix_links a i {
    color: #707070;
    font-size: 20px;
    transition: all 0.5s;
}

.info_fix_links a:hover i {
    color: #fff;
    transition: all 0.5s;
}
.footer .fa-phone-volume {
    font-size: 20px;
}

.info_fix_links a span {
    width: 20px;
    height: 100%;
    display: block;
    margin: 0 auto;
}
.info_fix_links a span::before {
    background-size: contain;
}

.info_fix_default.info_fix_tel{
}
.info_fix_default.info_fix_mail{
    display: none;
}









/* 門診時間 */

.info_fix_links a.time {
    display: flex;
    height: fit-content;
    padding: 40% 20%;
    background: #9a0b5ed1;
    border-radius: 0 0 0 5px;
    justify-content: center;
}

.info_fix_links a.time:hover{
    background: #9a0b5e;

}



.info_fix_links a.time p {
    color: #fff;
    font-size: 20px;
    writing-mode: vertical-lr;
    letter-spacing: 7px;
}

.info_fix_links a.time img {
    position: absolute;
    width: 40vw;
    height: 22vw;
    bottom: 0;
    right: 59px;
    pointer-events: none;
    opacity: 0;
    background-color: #fff;
    padding: 40px;
    border-radius: 5px;
    transform: translate(5vw, 0);
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.info_fix_links a.time:hover img {
    transform: translate(0, 0);
    opacity: 1;
    transition: all 1s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}




#to_top {
    color: #494949;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding-top: 0;
    transition: all 0.7s;
}

#to_top:hover i {
    transform: translate(0, -5px);
    transition: all 0.7s;
}

#to_top i:before,
#to_top i:after {
    background: #494949;
}



@keyframes footer-text {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

}






@media screen and (max-width: 1440px) {
    .footer_info ul {
        text-align: center;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .footer_info li:nth-child(1) {
        width: 100%;
    }

    .footer_info li:nth-child(2) {
        width: 100%;
    }
}




@media screen and (max-width: 768px) {
    .footer_menu a {
        display: inline-block;
        padding: 5px 11px;
        border: 0;
        margin: 10px 5px;
        font-size: 14px;
        line-height: 100%;
        color: #fff;
        background: transparent;
        border-bottom: 1px #fff solid;
        width: 43%;
    }

    .footer_info li:nth-child(1) {
        flex-wrap: wrap;
    }

    .footer_menu {
        flex-wrap: wrap;
    }
}




/* 開場MENU 浮動 */




@keyframes action-footer {
    0% {
        opacity: 0;
        transform: translate(100%, 0%);
    }

    100% {
        opacity: 1;
        transform: translate(0%, 0%) scale(1);
    }

}








/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    background: transparent;
    display: flex;
    flex-direction: column;
    height: 560px;
    align-content: flex-start;
    justify-content: center;
    padding: 0;
    padding-left: 12.5%;
    align-items: flex-start;
}

.banner::before {
    content: "";
    display: block;
    padding: 10px;
    border-radius: 50px;
    font-size: 12px;
    color: #707070;
    border: 1px #707070 solid;
    background-position: 7px center;
    background-repeat: no-repeat;
    text-transform: uppercase;
    padding-left: 33px;
}
.banner::after {
    content: "";
    display: block;
    width: 1258px;
    height: 320px;
    background-image: url(https://pic03.eapple.com.tw/drmok/banner-06.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 127px;
}

.banner h5 {
    display: flex;
    font-size: 50px;
    color: #707070;
    font-weight: 500;
    z-index: 2;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
}

.banner h5::before {
    content: "";
    display: block;
    font-size: 130px;
    color: #9b0b5e;
    font-weight: 400;
    text-transform: uppercase;
}



/* 最新消息 */
.banner.banA{
    display: none;
}
.share_page .banner.banA{
    display: flex;
}

.banner.banA::before {
    content: "NEWS";
    background-image: url(https://pic03.eapple.com.tw/drmok/megaphone_18966771.svg);
}
.banner.banA h5::before {
    content: "NEWS";
}



/* 文章管理 */


.banner.banblog::before {
    content: "knowledge sharing";
    background-image: url(https://pic03.eapple.com.tw/drmok/light-bulb_17176297.svg);
}
.banner.banblog h5::before {
    content: "knowledge";
    
}







.banner.banB {
    display: none;
}

.banner.banC {
    display: none;
}

.banner.banD {}

.banner.banE {}

.banner.banblog {}




@media screen and (max-width: 500px) {
    .banner::after {
        margin-top: -60px;
    }
}





/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*購物車設定*/
/* 產品的看更多按鈕設定 */
.products-list .more {
    border: 1px solid #9b0b5e !important;
    color: #9b0b5e;
}

.products-list a:hover .more {
    background: #9b0b5e;
    border-color: #9b0b5e;
    color: #ffffff;
}


/*外層*/
.product-layer-two li a {
    color: #9b0b5e;
    border: 1px solid #9b0b5e;
    transition: all 0.3s;
}

.product-layer-two li:hover>a {
    background: #9b0b5e;
    color: #fff;
}

.product-layer-two li.active>a {
    background: #9b0b5e;
    color: #fff;
    font-weight: normal;
}

/*內層*/
.lastPage {
    background: #9b0b5e;
    border-radius: 5px;
}

.nextaction {
    background-color: #9b0b5e;
}

.lastaction {
    color: #fff;
    background-color: #9b0b5e;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*文章設定*/
/*一排呈現*/

.blog_page .main_part {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding: 50px 0;
}




.blog_back a.article_main_header_area_back {
    background: #be4c3e;
}

.blog_le .accordion>li:hover,
.blog_le .accordion>li.on_this_category {
    background: transparent !important;
}

.share_page .edit {
    text-align: justify;
    line-height: 180%;
}

.subbox_item a:before,
.subbox_item a:after {
    transition: 0.3s;
}

.blog_le .accordion>li {
    width: 100%;
    position: relative;
    text-align: left;
    border-bottom: 1px #70707045 solid;
    transition: all 0.3s;
}

.blog_box_edit {
    line-height: 180%;
    text-align: justify;
}

h4.blog_category_title {
    text-align: justify;
    color: #fff;
    display: none;
}

.link a {
    width: 100%;
    display: block;
    padding: 15px 10px;
}

.accordion li .link {
    padding: 0;
}


.clearfix:before,
.clearfix:after {
    display: none;
}




/* 選單 */
.blog_box {
    min-height: 20vw;
    padding: 0px;
    display: flex;
    flex-direction: row;
        flex-wrap: wrap;
}

.blog_le {
    width: 19%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-left: 5%;
    align-content: flex-start;
    margin-right: 1%;
}

h5.blog_le_t {
    display: none;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    font-family: serif;
    letter-spacing: 2px;
    margin-bottom: 80px;
    width: auto;
    font-family: 'Noto Serif TC', 'Zen Maru Gothic', sans-serif, arial;
}

.blog_search {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-end;
}

.blog_search form {
    width: 100%;
    position: relative;
}

.blog_le .accordion {
    margin: 0;
    overflow: visible;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-around;
    padding: 10px 0 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    border-bottom: 0;
    gap: 10px;
}

.accordion li .link a {
    font-size: 20px;
    color: #707070;
    font-weight: 800;
    padding: 10px 20px;
    border: 0;
    transition: all 0.3s;
}

.accordion li .link a::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    position: absolute;
    left: 0;
    bottom: 50%;
    transform: translate(-50%, 50%);
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}



.accordion li:nth-child(even) .link a::before{
    background-color: #9b0b5e;

}


.accordion li:nth-child(odd) .link a::before{
    background-color: #7db0db;

}





.accordion li .link a:hover:before,
.accordion>li.on_this_category .link a::before {
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.blog_le .accordion>li:hover .link a,
.blog_le .accordion>li.on_this_category .link a {
    padding-left: 25px;
    color: #707070cb !important;
    transition: all 0.3s;
}

.accordion li+li .link {
border: 0;
}


.blog_search input[type=search] {
    outline: none;
    box-sizing: border-box;
    width: 100%;
    font-size: 14px;
    color: #999;
    border: 0;
    border-radius: 0;
    border-bottom: 1px #c8c8c8 solid;
    padding: 10px 35px 10px 10px;
    background: transparent;
}

.blog_search input[type=search]:focus,
.blog_search input[type=search]:valid {
    top: -20px;
    font-size: 16px;
    color: #333;
}

.blog_search input[type=submit] {
    outline: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 999;
    width: 38px;
    height: 38px;
    background: url(../images/search-icon.png) no-repeat 9px center transparent;
    border: none;
    transform: scaleX(-1);
}

.blog_search input[type="submit"]:hover {
    background: url(../images/search-icon.png) no-repeat 9px center transparent;
    border: none;
    color: #fff;
    transition: all 0.3s;
}

.blog_search input[type=search]:focus {
    color: #ccc;
}








/* 內容 */


.blog_in_page .main_part {
    max-width: 100%;
}
.blog_back {
    width: 60%;
    margin: 0 auto;
}

.blog_ri {
    width: 80%;
    padding: 0;
    min-height: 75vh;
    padding: 50px 40px;
    border-radius: 40px;
    background: #ffffffa3;
    border: 1px #fff solid;
}

.blog_subbox {
    display: grid;
    justify-content: flex-start;
    align-content: center;
    grid-template-columns: repeat(3,1fr);
}

.blog_list_ri h5 {
    color: #707070;
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.blog_s .subbox_item img {
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.subbox_item:hover img {
    transform: translate(-50%, -50%) scale(1.05);
    transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}





.subbox_item a:after {
    display: none;
}

.subbox_item a:before {
    display: none;
}

.blog_list_le {
    height: 0;
    width: 100%;
    line-height: 0;
    padding-bottom: calc(100% / 4 * 3);
    overflow: hidden;
    position: relative;
}

.subbox_item {
    width: 100%;
    margin: 0;
    margin-bottom: 0;
}

.subbox_item a {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    background: transparent;
    flex-direction: row;
}

.blog_list_ri {
    display: flex;
    width: 100%;
    margin-left: 0;
    padding: 0;
    padding-left: 0;
    min-height: 80px;
    position: relative;
    opacity: 1;
    transition: all 0.3s;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: baseline;
}

.subbox_item a:hover .blog_list_ri {
    opacity: 1;
    transition: all 0.3s;
}

.blog_list_le img {
    max-width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.blog_list_ri em {
    font-size: 14px;
    color: #808080;
    font-style: normal;
    display: block;
    margin: 0;
    margin-bottom: 10px;
    position: relative;
}

.blog_list_ri p {
    width: 100%;
    font-size: 15px;
    color: #808080;
    line-height: 130%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;
    line-height: 160%;
}


.blog_box_edit {
    color: #707070;
}


.blog_back a.article_btn_back {
    background: #9b0b5e;
    border-radius: 5px;
}
.blog_back a.article_btn_next,.blog_back a.article_btn_prev {
    background: #808080;
    border-radius: 5px;
}
.related_list li a img {
    position: absolute;
    max-width: 650px;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}





/* 底下選單 */

.news_related_list li a {
    background: transparent;
}

.news_related_list li a p {
    font-size: 20px;
    color: #707070;
}
.news_related_list li a img {
    border-radius: 5px;
    transition: all 0.5s;
}
.news_related_list li a:hover img {
    transform: scale(1.1);
    transition: all 0.5s;
}

.news_related h6 span:before {
    color: #707070;
}







@media screen and (max-width: 768px) {

    .subbox_item {
        width: 100%;
        border: 0;
    }

    .subbox_item img {
        transform: translate(-50%, -50%);
        filter: none;
        transition: all 0.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
    }

    .subbox_item a .blog_list_ri {
        opacity: 1;
        position: relative;
        transition: all 0.3s;
    }

    .blog_page .main_part {
        padding: 0 5%;
    }

    .blog_list_ri em {
        bottom: 25px;
    }

    .blog_search {
        width: 100%;
        margin-bottom: 0px;
    }

    .blog_search form {
        width: 100%;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*主分類頁面*/
.album_page .main_part,
.album_class_page .main_part,
.album_info_page .main_part {
    max-width: 1400px;
}

.show-list .item:hover .show_name {
    color: #9b0b5e;
}

.show-list .show_pic {
    height: 30vh;
    max-height: 290px;
    padding-bottom: 0;
}

.show-list .show_pic img {
    display: inline-block;
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: 30vh;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
}

/*次分類頁面*/
.other_album_choice li {
    background: #9b0b5e;
}

.other_subalbum li p {
    line-height: 220%;
}

.other_subalbum li a div {
    height: 30vh;
    max-height: 250px;
    overflow: hidden;
    position: relative;
}

.other_subalbum li a img {
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: 100%;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
}

.other_subalbum li a div:after {
    content: "";
    position: absolute;
    background: rgb(0 0 0 / 30%);
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(0);
    top: 50%;
    left: 50%;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

.other_subalbum li a:hover div:after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}


/*照片頁*/
.pic-list .show_pic {
    height: 40vh;
    max-height: 240px;
    padding-bottom: 0;
}

.pic-list .show_pic img {
    max-width: 100%;
    min-width: 100%;
    object-fit: cover;
    height: 100%;
    -moz-object-fit: cover;
    -ms-object-fit: cover;
    -o-object-fit: cover;
    -webkit-object-fit: cover;
}


@media screen and (max-width: 600px) {

    /*照片頁*/
    .pic-list .item {
        width: 96%;
        margin: 10px 2%;
    }
}

/*相本分類全版面 ( 限制最寬2000px
.work_page .main_part { max-width:2000px;}
.work_page .show_content { padding:0; width:100%;}
.work_page .show-list .item { width:33%; display:inline-block; float:none; margin:0; padding:0;}
@media screen and (max-width: 768px) {
.work_page .show-list .item { width:49%;}
}
@media screen and (max-width: 570px) {
.work_page .show-list .item { width:100%;}
}
.work_page .show-list .item a { max-width:100%;}
.work_page .show-list .show_pic { height:auto; line-height:0;}
.work_page .show-list .show_pic img { max-width:100%; max-height:100%;}
.work_page .show-list .show_name { position:absolute; top:50%; right:10%; width:80%; height:auto; line-height:160%; font-size: 20px; color: #FFFFFF !important; border: solid 1px #fff; text-align: center; margin: -20px 0 0 -120px; padding:5px 20px; transition:all ease-in .3s; opacity:0;}
.work_page .show-list .item:hover .show_name {opacity:1;}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相本列表
.work_info_page .main_part { max-width:2000px;}
.work_info_page .show_content { padding:0; width:100%;}
.work_info_page .subalbum-menu { text-align:center;}
.work_info_page .subalbum-menu h2 { float:none;}
.work_info_page .pic-list .item { margin:0; padding:10px; width:49%; float:none; display:inline-block;}
@media screen and (max-width: 768px) {
.work_info_page .pic-list .item { width:100%;}
}
.work_info_page .pic-list .show_pic { height:auto; line-height:0;}
.work_info_page .pic-list .show_pic img { max-width:100%; max-height:100%;}
.work_info_page .pic-list .item a { max-width:100%; pointer-events: none; cursor: default; } 取消連結被點擊效果
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*其他分頁*/

#page {
    background-color: #EAEAEA;
}

#page #content::before {
    content: "";
    display: block;
    width: 100vh;
    height: 100vh;
    position: fixed;
    top: 40%;
    left: 50%;
    border-radius: 100%;
    background: linear-gradient(139deg, #0394f961, #f1038461);
    filter: blur(160px);
    opacity: 1;
    z-index: 0;
    pointer-events: none;
    animation: bg-ball 15s infinite cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

@keyframes bg-ball {

    0%,
    100% {
        transform: scale(1) rotate(0);
    }

    50% {
        transform: scale(1.5) rotate(150deg);
    }

}


.other_select_page .page {
    display: none;
}

.other_select_page .other_promotion {
    display: none;
}

.other_select_page .promotion_title h2 {
    display: none;
    border-bottom: 2px solid #9b0b5e;
}

.other_select_page .promotion_title {
    display: none;
    border-bottom: 1px solid #9b0b5e;
}



@media screen and (max-width: 768px) {

    /* 開啟手機板下方按鈕所需設定 */
    #bottom_menu {
        display: block;
    }

    .footer.with_shopping_mode {
        padding: 30px 0 70px;
    }

    #to_top {
        bottom: 60px;
    }

    .nav-menu {
        margin: 0;
    }

    .nav-menu>li:not(.tp_links) {
        padding-right: 0;
    }

    .nav-dropdown>li {
        text-align: left;
    }

    .nav-dropdown>li>a {
        width: calc(100% - 45px);
    }

    /*手機版LOGO設定*/
    .footer_logo {
        margin-left: unset;
        margin: auto;
        text-align: center;
    }

}


/* -----------------------------------最新消息------------------------------ */


.share_page .main_part {
    position: relative;
    width: 100%;
    max-width: 87.5%;
    margin: auto;
    padding: 50px 6%;
    border-radius: 40px;
    background: #ffffffa3;
    border: 1px #fff solid;
}

.promotion_title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-end;
    padding-bottom: 10px;
    border-bottom: 1px #70707057 solid;
}

.promotion_title h2 {
    font-size: 50px;
    color: #707070;
}

.promotion_title span {
    color: #808080;
    border: 0;
    padding: 2px 7px;
    margin: 0;
    width: 100%;
}
.promotion_title em {
    color: #808080;
    border: 0;
    padding: 0;
    margin: 0;
    height: fit-content;
    word-break: keep-all;
    order: 3;
}

/* 選項 */

.other_promotion {
    margin-top: 5vh;
    padding: 1% 3%;
    grid-template-columns: 1fr;
    background: #ffffff63;
    border-radius: 5px;
    gap: 0;
}
.other_promotion li a:before,.other_promotion li a:after {
    display: none;
}

.other_promotion li a {
    border: none;
    display: flex;
    align-items: center;
    border-bottom: 1px #70707036 solid;
    padding: 25px 10px 25px;
}
.other_promotion li a:hover {
    background: transparent;
}

.other_promotion li a::before {
    content: "";
    display: block;
    background: #0000000e;
    width: 0%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 5px;
    border: 0;
    transition: all 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}
.other_promotion li a:hover:before {
    width: 100%;
    transition: all .5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}


.other_promotion li a::after {
    content: "read more";
    display: block;
    width: fit-content;
    height: fit-content;
    border: 0;
    position: absolute;
    top: 50%;
    right: 10px;
    opacity: 0;
    transform: translate(0%,-50%);
    transition: all 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}
.other_promotion li a:hover:after {
  width: fit-content;
    height: fit-content;
    opacity: 1;
    transition: all 1.5s cubic-bezier(0.73, 0.08, 0.11, 0.99);
}

.other_promotion li:nth-child(even) a::after {
    color: #9b0b5e;

}


.other_promotion li:nth-child(odd) a::after {
    color: #7db0db;

}





.other_promotion .pmtTitle h3 {
    font-size: 20px;
    color: #707070;
    margin: 0;
}

.other_promotion .pmtTime {
    display: flex;
    color: #808080;
    margin-right: 20px;
    align-items: center;
}

.other_promotion .pmtTime cite {
    font-size: 18px;
    margin-right: 20px;
}

.other_promotion .pmtTime span {
    float: right;
    font-size: 13px;
    padding: 2px 10px;
    border: 1px #7070708a solid;
    border-radius: 30px;
}



/*--------------------------------- 聯絡我們---------------------------------------- */

.contact_le_map {
    display: none;
}






.contact_page .main_part {
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding: 100px 0;
    background-image: url(https://pic03.eapple.com.tw/drmok/bg-13.png);
}

.blank_letter {
    font-family: "Noto Sans", system-ui;
    padding-top: 0px;
    font-size: 24px;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

.blank_letter.i::before {
    content: "FORM";
    display: block;
    color: #fff;
    font-size: 150px;
    font-weight: 500;
    font-family: "Anton SC";
}

.blank_letter.i {
    text-align: left;
}

.list_before.info li {
    color: #fff;
    display: flex;
    margin: 10px 0;
    padding-left: 0;
}

.contact_form li .form__label {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-left: 0;
    padding-right: 0;
    vertical-align: top;
    color: #fff;
    margin: 10px 0 5px;
}

.contact_content {
    margin: auto;
    padding: 0;
    max-width: 80%;
}

.contact_content form {
    display: flex;
    justify-content: space-between;
}

.contact_content .information_left {
    width: 30%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact_content .information_right {
    width: 43%;
    padding-left: 0;
    padding: 3% 7%;
    background: #00000066;
    border: 1px #fff solid;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.clearfix:before,
.clearfix:after {
    display: none;
}

.contact_form {
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 15px;
    color: #fff;
}

.contact_form li input.noborder {
    border: 1px #ddd solid;
    background-color: #ffffff1f;
}

.contact_form li textarea.noborder {
    border: 1px #ddd solid;
    background-color: #ffffff1f;
}


.contact_form li {
    padding: 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.contact_form li .form__insert {
    text-align: center;
}

.contact_form li:nth-last-of-type(2) {
    padding: 0;
    padding-left: 0;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    margin: 20px 0 10px;
}

.contact_form li:nth-last-of-type(2) .form__label {
    width: fit-content;
    margin: 0;
    margin-right: 20px;
}

.contact_form li:nth-last-of-type(2) .form__insert {
    width: auto;

}

.contact_form li.last blockquote {
    color: #fff;
}

.contact_form li.last cite {
    background: #cf4c3e;
    color: #fff;
}

.red {
    color: #cf4c3e;
}


.contact_form li.last {
    display: flex;
    text-align: center;
    margin-top: 50px;
    padding-left: 0;
    flex-direction: row;
    justify-content: center;
}

.TEL:before,
.TEL2:before,
.PHONE:before,
.FAX:before,
.TAXID:before,
.MAIL:before,
.ADD:before,
.ADD2:before {
    position: relative;
    display: block;
    width: 35px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: -1px;
    margin-right: 20px;
}

.PHONE:before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/drmok/icon-14.png);
    width: 30px;
    height: 30px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.MAIL:before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/drmok/icon-15.png);
    width: 30px;
    height: 30px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.ADD:before {
    content: "";
    background-image: url(https://pic03.eapple.com.tw/drmok/icon-16.png);
    width: 30px;
    height: 30px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}




@media screen and (max-width: 768px) {
    .contact_content form {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: flex-start;
    }

    .contact_content .information_left {
        width: 100%;
    }

    .contact_content .information_right {
        width: 100%;
    }

    .contact_page .main_part {
        padding: 100px 0;
        background-image: url(https://pic03.eapple.com.tw/drmok/bg-13.png);
        background-size: cover;
        background-position: right;
        background-repeat: no-repeat;
    }
}