@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;}
*/


/*上方選單右邊設定 臉書/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}
*/


/*電腦LOGO
.nav-brand {}
*/

/*手機LOGO
.nav-brand-m {}
*/


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#content_main {
    margin: 0;
}

.bannerindex {
    position: relative;
    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;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*基本設定*/

.pageIndex .main_part {
    border-top: 0px solid #ccc;
}

/*中間小標刪除*/
.path {
    display: none;
}

/*按鈕*/
.animated-arrow {
    border-radius: 5px;
    background: #7d7d7d;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*header*/
.pageIndex .header_area {
    position: fixed;
    width: 100%;
}

.main_header_area {
    background: #ffffffbf;
    box-shadow: 0 0 10px #7575754a;
}

.main_header_area .container {
    max-width: 85%;
}

.me_tp_features {
    display: none;
}

.navigation {
    padding: 0px 0 0px 220px;
}

/*LOGO*/
.nav-brand {
    width: 215px;
    padding: 10px 0 0;
    transition: all 0.3s;
}

.header_area.sticky .nav-brand {
    width: 180px;
    padding: 5px 0 0;
    transition: all 0.3s;
}

/*選單*/
.stellarnav>ul>li>a {
    padding: 40px 20px;
    letter-spacing: 2px;
    color: #000000;
    position: relative;
    display: block;
    font-size: 16px;
    line-height: 0;
    height: 0;
    margin: 0;
    transition: all 0.3s;
}

.stellarnav>ul>li:hover>a {
    font-weight: 600;
    transition: all 0.3s;
}

.stellarnav>ul>li>a:before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    bottom: -5px;
    left: 50%;
    width: 80%;
    height: 8px;
    transform: translate(-50%, -50%) scale(0, 0);
    background: #ffd700;
    transform: translate(-50%, -50%) scale(0, 0);
    -webkit-transition: all .3s;
    transition: all .3s;
}

.stellarnav>ul>li:hover>a:before {
    bottom: -5px;
    transform: translate(-50%, -50%) scale(.8, .8);
    -webkit-transition: all .3s;
    transition: all .3s;
}

.header_area.sticky .stellarnav>ul>li>a {
    padding: 30px 20px;
    transition: all .3s;
}

/*下拉*/
.stellarnav ul ul {
    min-width: 200px;
    transform: translateX(-50%);
    left: 50%;
    background: #999;
}

.stellarnav>ul>li.drop-left>ul {
    right: unset;
}

/*下拉選單*/
.stellarnav li li {
    border: unset;
    margin-bottom: 0;
}

.stellarnav li li a {
    text-align: center;
    padding: 10px;
    color: #ffffff;
}

.stellarnav li.has-sub>a:after {
    display: none;
}

.stellarnav li li a:hover {
    color: #000000;
    background: #fde7ab;
}

@media screen and (max-width: 1200px) {
    .main_header_area .container {
        max-width: 95%;
    }

    .stellarnav>ul>li>a {
        padding: 40px 10px;
    }

    .header_area.sticky .stellarnav>ul>li>a {
        padding: 30px 10px;
    }
}

@media screen and (max-width: 1024px) {
    .main_header_area .container {
        max-width: 100%;
    }

    .navigation {
        padding: 0;
    }

    .nav-header {
        padding-top: 5px;
    }

    .pageIndex .header_area {
        position: relative;
    }

    .stellarnav>ul>li>a,
    .header_area.sticky .stellarnav>ul>li>a {
        padding: 30px 15px
    }
}

@media screen and (max-width: 768px) {
    .main_header_area .container {
        max-width: 100%;
    }

    .nav-header {
        padding-top: 5px;
    }

    .header_area,
    .pageIndex .header_area {
        position: sticky;
    }

    .nav-brand,
    .header_area.sticky .nav-brand {
        width: 150px;
        padding: 5px 0;
    }

    .stellarnav.mobile {
        display: flex;
        width: auto;
        height: 100%;
        padding: 0 15px;
        left: 0;
        top: 0;
        justify-content: center;
        align-items: center;
        background: #444;
    }

    .stellarnav .menu-toggle span.bars span {
        width: 25px;
        height: 2px;
        border-radius: 10px;
        background: #ffffff;
        margin: 0px auto 5px;
    }

    .stellarnav .menu-toggle:after {
        font-size: 10px;
        color: #fff;
        transform: unset;
        letter-spacing: 1px;
        margin-top: 10px;
    }

    .stellarnav.mobile.left>ul {
        background: #444;
        padding: 0;
        min-height: 100vh;
    }

    .stellarnav.mobile>ul>li {
        border-bottom: 1px #fff solid;
    }

    .stellarnav.mobile>ul>li>a,
    .header_area.sticky .stellarnav>ul>li>a {
        padding: 18px 40px;
        color: #fff;
    }

    .stellarnav>ul>li>a:before,
    .stellarnav>ul>li:hover>a:before {
        display: none;
    }

    .stellarnav.mobile>ul>li>a.dd-toggle {
        padding: 10px;
        top: 6px;
    }

    .stellarnav.mobile li.open {
        background: #777;
        padding: 0;
    }

    .stellarnav a.dd-toggle .icon-plus:before,
    .stellarnav a.dd-toggle .icon-plus:after {
        border-bottom: solid 3px #fff;
    }

    .stellarnav.mobile ul ul {
        background: #777;
    }

    .stellarnav li li {
        border: unset;
    }

    .stellarnav li li a {
        padding: 15px 5px;
    }

    .stellarnav .icon-close {
        margin-right: 6px;
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        color: #fff;
        letter-spacing: 2px;
        background: unset;
        border-bottom: 1px #ddd solid;
    }

    .stellarnav .icon-close:before,
    .stellarnav .icon-close:after {
        border-bottom: solid 3px #fff;
    }
}

@media screen and (max-width: 500px) {
    .nav-header {
        padding-top: 15px;
    }

    .nav-brand {
        width: 145px;
        padding: 0;
    }

    .stellarnav .menu-toggle {
        padding: 15px 0;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*大圖*/
.swiper-container-fade .swiper-slide:nth-child(1):before {
    content: "";
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/megatrust/cover_01.svg);
    width: 900px;
    top: 55%;
    left: 78%;
    max-width: 65vw;
    max-height: 40vw;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
    transform: translate(-50%, -50%);
    aspect-ratio: 895/582;

}

.swiper-container-fade .swiper-slide:nth-child(2):before {
    content: "";
    position: absolute;
    background-image: url(https://pic03.eapple.com.tw/megatrust/cover_02.svg);
    width: 1000px;
    top: 50%;
    left: 20%;
    max-width: 65vw;
    max-height: 40vw;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
    transform: translate(-50%, -50%);
    aspect-ratio: 995 / 567;
}

@media screen and (max-width: 600px) {

    /*手機板大圖*/
    .swiper-slide img {
        display: none;
    }

    .swiper-slide {
        width: 100%;
        height: 0;
        padding-bottom: calc(100% / 3 * 4);
    }

    .swiper-slide:nth-child(1) {
        background-image: url(https://pic03.eapple.com.tw/megatrust/手機大圖-01.jpg);
        background-size: cover;
        background-position: center;
    }

    .swiper-slide:nth-child(2) {
        background-image: url(https://pic03.eapple.com.tw/megatrust/手機大圖-02.jpg);
        background-size: cover;
        background-position: center;
    }

    .swiper-container-fade .swiper-slide:nth-child(1):before {
        top: 40%;
        left: 65%;
        max-width: 125vw;
        max-height: 55vw;
    }

    .swiper-container-fade .swiper-slide:nth-child(2):before {
        top: 70%;
        left: 25%;
        max-width: 145vw;
        max-height: 60vw;
    }
}

/*內頁背景*/
body:after {
    content: "";
    position: fixed;
    /* stretch a fixed position to the whole screen */
    top: 0;
    height: 100vh;
    /* fix for mobile browser address bar appearing disappearing */
    left: 0;
    right: 0;
    z-index: -1;
    /* needed to keep in the background */
    background: url(https://pic03.eapple.com.tw//bg-01.jpg) center right;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

#content_main {
    background: #fff0;
}

#content {
    min-height: 100vh;
}

/*內頁BANNER 設定*/
.banner {
    display: none;
}

.banner:after {}

.banner h5 {}

.banner h5:before {}

.services_page .banner.banB h5 {
    display: none;
}

.other_page .banner.banB h5 {
    display: none;
}

.banner.banC {}

.banner.banE {}

.banner.banF {}

.banner.banblog {}

@media screen and (max-width: 1200px) {
    .banner {
        height: 250px;
        background-attachment: inherit;
    }

    .banner h5 {
        width: 100%;
        left: 50%;
    }

    .banner h5:before {
        transform: translate(-50%, -50%);
        left: 50%;
        top: 50%;
    }
}

@media screen and (max-width: 1024px) {}

@media screen and (max-width: 600px) {
    .banner {
        height: 200px;
    }

    .banner h5 {
        font-size: 25px;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*footer*/

.double_key {
    padding-top: 15px;
    width: 100%;
}

.copy {
    padding: 15px 0;
    font-size: 14px;
    letter-spacing: 1px;
    color: #fff;
    background: #484848;
    border-top: unset;
    margin-top: 0;
}

.copy a {
    color: #fff;
}

@media screen and (max-width: 500px) {
    .footer .center {
        padding: 15px 0;
    }

    .copy {
        font-size: 12px;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*首頁文章*/
.module_i_news {
    background: #f6f6f6;
}

.module_i_news ul {
    max-width: 1400px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}

.module_i_news li {
    width: 50%;
    padding: 10px;
    position: relative;
    background: #fcfcfc;
    transform: scale(0.95);
    transition: 0.6s;
}

.module_i_news li:hover {
    border-radius: 5px;
    transform: scale(1.05);
    box-shadow: -1px 1px 20px 13px rgba(0, 0, 0, 0.1);
    transition: 0.6s;
}

.module_i_news li a {
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-column-gap: 10px;
    padding: 10px;
    border-radius: 5px;
    transition: 0.6s;
}

.module_i_news li:nth-child(n+5) {
    display: none;
}

.module_i_news li a:before,
.module_i_news li a:after {
    display: none;
}

.i_blog_le img {
    position: relative;
    transform: translate(-50%, 0%);
    min-height: 100%;
    object-fit: cover;
    left: 50%;
    transition: all 0.3s;
}

.module_i_news .title_i_box {
    display: flex;
    margin: 50px auto;
    text-align: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.module_i_news .title_i_box h4 {
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 30px;
    letter-spacing: 2px;
    color: #000000;
    font-weight: bold;
    order: 2;
    justify-content: center;
    flex-direction: column;
}

.module_i_news .title_i_box h4::before {
    content: 'MEDIA REPORTS';
    font-size: 60px;
    letter-spacing: 0;
    display: block;
    color: #021F59;
    font-family: 'Inter';
    font-weight: 800;
}

.module_i_news li a:hover .i_blog_le img {
    transition: all 0.3s;
    transform: translate(-50%, 0%) scale(1.05);
}

.i_blog_le {
    padding: 0;
    overflow: hidden;
    border-radius: 5px;
}

.i_blog_ri {
    width: 100%;
    background: unset;
    padding: 0 0 0 20px;
}

.i_blog_ri h5 {
    color: #000000;
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 35px;
    -webkit-line-clamp: 2;
}

.i_blog_ri em {
    font-size: 16px;
    margin: 10px 0;
}

.i_blog_ri p {
    -webkit-line-clamp: 2;
    line-height: 160%;
    font-size: 15px;
    color: #000000;
    letter-spacing: 1px;
}

.i_blog_b * {
    transition: all .2s;
    font-weight: normal;
}

.i_blog_b {
    padding: 50px 0;
}

.i_blog_b a {
    letter-spacing: 2px;
    margin-top: 0;
}

.i_blog_b a:hover {
    background: #000000;
    color: #ffffff;
}

.i_blog_b a i.fa-solid.fa-arrow-right {
    display: none;
}

@media screen and (max-width: 1200px) {
    .module_i_news .title_i_box h4::before {
        font-size: 50px;
        letter-spacing: 1px;
    }
}

@media screen and (max-width: 1024px) {
    .module_i_news li {
        width: 100%;
        margin-bottom: 0px;
        border-bottom: unset;
    }
}

@media screen and (max-width: 768px) {
    .module_i_news .title_i_box h4::before {
        font-size: 35px;
    }

    .module_i_news .title_i_box h4 {
        font-size: 22px;
    }
}

@media screen and (max-width: 450px) {
    .module_i_news .title_i_box {
        position: relative;
        z-index: 3;
    }

    .module_i_news .title_i_box h4::before {
        font-size: 30px;
    }

    .module_i_news .title_i_box h4 {
        font-size: 20px;
    }

    .module_i_news li a {
        flex-direction: column;
    }

    .i_blog_ri,
    .i_blog_le {
        width: 100%;
    }

    .i_blog_ri {
        padding: 15px 0;
    }

    .i_blog_ri h5 {
        font-size: 18px;
    }

    .i_blog_ri em {
        font-size: 14px;
    }

    .i_blog_ri p {
        font-size: 13px;
    }

    .i_blog_b {
        padding: 30px 0;
    }
}

/*文章設定*/
/*(新)文章分類*/
/*文章管理*/
.blog_page .main_part,
.blog_in_page .main_part {
    max-width: 1400px;
}

.blog_box {
    display: flex;
    min-height: 20vw;
    padding: 0px;
    flex-wrap: wrap;
}

.blog_le {
    width: 20%;
}

.blog_ri {
    width: 80%;
}

h5.blog_le_t {
    font-size: 20px;
    font-family: 'Poppins';
    font-weight: bold;
    color: #000;
}

h5.blog_le_t em {
    margin-right: 5px;
    letter-spacing: 1px;
}

h5.blog_le_t span {
    letter-spacing: 1px;
}

.blog_le .accordion {
    border-radius: 5px;
    border: unset;
    background: #f2f2f2;
}

.blog_search input[type=search] {
    border-radius: 5px;
    letter-spacing: 2px;
}

.accordion li .link {
    padding: 15px 0px;
    text-align: center;
    font-weight: 500;
}

.accordion li .link a {
    color: #000;
    letter-spacing: 1px;
    font-weight: unset;
}

.blog_le .accordion>li:hover,
.blog_le .accordion>li.on_this_category {
    background: #333 !important;
}

/*大分類*/
.blog_subbox {
    display: flex;
    flex-wrap: wrap;
}

.subbox_item {
    width: 32%;
    padding: 10px;
    margin: 5px;
    background: #f2f2f2;
}

.subbox_item a {
    overflow: hidden;
}

.subbox_item a:before,
.subbox_item a:after {
    display: none;
}

.blog_list_le {
    width: 100%;
    padding: 0;
    border-radius: 5px;
    padding-bottom: 100%;
    height: 0;
    overflow: hidden;
    position: relative;
}

.blog_list_le img {
    position: absolute;
    transform: translate(-50%, -50%);
    min-height: 100%;
    object-fit: cover;
    top: 50%;
    left: 50%;
}

.subbox_item a:hover .blog_list_le img {
    transform: translate(-50%, -50%) scale(1.1);
    transition: 0.5s ease-in-out;
}

.blog_list_ri {
    width: 100%;
    background: #ffffff00;
    padding: 10px 5px;
    min-height: 80px;
}

.blog_list_ri h5 {
    font-size: 18px;
    font-weight: 500 !important;
    color: #000000 !important;
}

.subbox_item a:hover .blog_list_ri h5 {
    color: #021F59 !important;
}

.blog_list_ri em {
    color: #000000 !important;
}

.blog_list_ri p {
    line-height: 160%;
    font-size: 13px;
}

.blog_page h4.blog_category_title,
.blog_in_page h4.blog_category_title {
    color: #000000;
    font-weight: bold;
    border-bottom: 1px #ccc solid;
}

.blog_box_edit * {
    line-height: 180%;
}

/*文章內頁按鈕*/
.blog_back {
    display: flex;
    width: 100%;
    text-align: center;
    justify-content: space-between;
}

.blog_back a {
    padding: 15px;
    width: 33%;
}

.blog_back a.article_btn_back {
    background: #e9e9e9;
    border: unset;
    color: #000000;
}

.blog_back a.article_btn_back:hover {
    background: #000000;
    border: unset;
    color: #ffffff;
}

.blog_back a.article_btn_prev,
.blog_back a.article_btn_next {
    background: #cccccc;
}

.blog_back a.article_btn_prev:hover,
.blog_back a.article_btn_next:hover {
    background: #fde7ab;
    color: #000000;
}

@media screen and (max-width: 1024px) {
    .blog_subbox {
        justify-content: space-between;
    }

    .subbox_item {
        width: 48%;
    }

    .blog_list_le img {
        min-width: 100%;
    }
}

@media screen and (max-width: 768px) {

    .blog_page h4.blog_category_title,
    .blog_in_page h4.blog_category_title {
        font-size: 25px;
    }

    .blog_le .accordion {
        display: flex;
        text-align: center;
        flex-wrap: wrap;
        justify-content: center;
    }

    h5.blog_le_t {
        display: none;
    }

    .blog_le .accordion li {
        width: 100%;
    }

    .blog_le {
        width: 100%;
    }

    .blog_ri {
        width: 100%;
    }

    .subbox_item {
        width: 48.5%;
        margin: 20px 0px;
    }
}

@media screen and (max-width: 450px) {

    .blog_page .main_part,
    .blog_in_page .main_part {
        padding: 20px 10px 10px;
    }

    .subbox_item {
        width: 100%;
        margin: 10px 0px 15px;
        padding: 5px;
    }

    .blog_box_edit span {
        font-size: 16px !important;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*首頁促銷方案*/
.news_part {
    max-width: 100%;
    padding: 100px 15%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    background: #f6f6f6;
}

.news_part .title_i_box {
    order: 1;
    max-width: 100%;
    margin: 0;
}

.news_part .title_i_box h4 {
    font-size: 30px;
    letter-spacing: 2px;
    color: #000000;
    font-weight: bold;
    text-align: left;
}

.news_part .title_i_box h4:before {
    content: 'EXPERIENCE SHARING';
    display: block;
    font-size: 60px;
    margin-bottom: 5px;
    color: #021F59;
    font-family: 'Inter';
    font-weight: 800;
}

.news_list {
    order: 3;
    max-width: 100%;
    width: 100%;
    margin-top: 100px;
}

.i_news_b {
    order: 2;
    margin: 0;
    max-width: 100%;
}

.i_news_b a:hover {
    background: #000;
    transition: .3s ease-out;
}

.news_list ul {
    padding: 0;
}

.news_list ul li {
    border: unset;
    margin-bottom: 0;
    background: unset;
    border-bottom: 1px #ddd solid;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.news_list ul li:hover {
    border-bottom-color: #999;
}

.news_list ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news_list ul li a:hover {
    background: unset;
}

.news_list ul li span {
    padding: 0;
    font-size: 16px;
    text-align: left;
    color: #000000;
    font-weight: 600;
    letter-spacing: 2px;
}

.news_list ul li p {
    font-size: 18px;
    color: #000000;
    letter-spacing: 2px;
    font-weight: 600;
    padding: 0px 100px 0px 0;
}

.news_list ul li a:hover p {
    color: #000000;
}

.news_list ul li p:after {
    content: 'READ MORE';
    font-size: 14px;
    color: #000000;
    letter-spacing: 1px;
}

.news_list ul li a:hover p:after {
    right: 0;
    font-weight: 800;
}

@media screen and (max-width: 1200px) {
    .news_part {
        padding: 100px 5%;
    }

    .news_part .title_i_box h4:before {
        font-size: 50px;
    }
}

@media screen and (max-width: 1024px) {
    .news_part {
        flex-direction: column;
        align-items: flex-end;
    }

    .news_part .title_i_box {
        width: 100%;
    }

    .news_list {
        order: 2;
        width: 100%;
        margin-top: 50px;
    }

    .i_news_b {
        order: 3;
        position: relative;
        margin: auto;
    }
}

@media screen and (max-width: 768px) {
    .news_part {
        padding: 80px 20px;
    }

    .news_part .title_i_box h4:before {
        font-size: 35px;
    }

    .news_part .title_i_box h4 {
        font-size: 22px;
    }

    .news_list ul li {
        border-top: 1px #ddd solid;
        border-bottom: unset;
        padding-top: 20px;
        margin-top: 0;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .news_list ul li a {
        flex-direction: column;
    }

    .news_list ul li p {
        padding: 15px 0;
        text-align: left;
    }

    .news_list ul li p:after {
        margin-top: 20px;
        width: 100%;
        text-align: left;
        position: relative;
    }

    .news_list ul li span {
        width: 100%;
    }

    .news_list ul li p {
        width: 100%;
    }
}

@media screen and (max-width: 450px) {
    .news_part {
        padding: 50px 20px;
    }

    .news_part .title_i_box h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .news_part .title_i_box h4:before {
        font-size: 30px;
    }

    .news_list {
        margin-top: 20px;
    }

    .news_list ul li a {
        padding: 0;
    }

    .news_list ul li span,
    .news_list ul li p {
        width: 100%;
    }

    .news_list ul li span {
        font-size: 15px;
        padding: 10px 0;
    }

    .news_list ul li p {
        padding: 15px 0px;
        font-size: 16px;
    }

    .i_news_b a {
        margin-top: 30px;
    }
}

/*促銷方案*/
.promotion_title {
    padding-bottom: 15px;
    border-bottom: 1px #F7EAEA solid;
}

.promotion_title span {
    border: unset;
    padding: 0 20px 0 0;
    margin: 0;
    font-weight: bold;
    font-size: 18px;
    color: #000000;
    letter-spacing: 2px;
}

.promotion_title em {
    display: none;
}

.promotion_title h2 {
    font-size: 25px;
    letter-spacing: 1px;
    color: #000000;
}

.promotions_page .edit {
    color: #000000;
    line-height: 200%;
    letter-spacing: 1px;
    padding: 20px 10px;
}

.other_promotion li {
    width: 100%;
    padding: 0px 3px;
    margin-left: 0;
}

.other_promotion li a {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 30px 0 0;
    padding: 25px 20px;
    border: unset;
    outline: 2px #ddd dashed;
    background: unset;
    transition: .3s ease-out;
}

.other_promotion li a:after,
.other_promotion li a:before {
    border: unset;
}

.other_promotion .pmtTime {
    display: inline-block;
}

.other_promotion .pmtTime span {
    display: none;
}

.other_promotion .pmtTitle {
    display: flex;
    align-items: center;
}

.other_promotion .pmtTitle h3 {
    margin: 0;
    font-size: 18px;
    height: 25px;
    letter-spacing: 2px;
    color: #000000;
    transition: .3s ease-out;
}

.other_promotion .pmtTitle span {
    display: none;
}

.other_promotion li a:hover {
    background: unset;
    outline: 2px #ddd dashed;
    transition: .3s ease-out;
}

.other_promotion li a:hover .pmtTitle h3,
.other_promotion li a:hover .pmtTime span {
    color: #000000;
    transition: .3s ease-out;
}

@media screen and (max-width: 768px) {
    .promotion_title span {
        font-size: 16px;
        margin: 0 0 10px 0;
    }

    .promotion_title h2 {
        font-size: 20px;
    }
}

@media screen and (max-width: 400px) {
    .promotions_page .edit {
        line-height: 180%;
        font-size: 15px;
    }

    .other_promotion li a {
        padding: 20px;
        margin: 20px 0 0;
    }

    .other_promotion .pmtTitle h3 {
        font-size: 16px;
        line-height: 180%;
        -webkit-line-clamp: 1;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*相簿*/
.album_page .main_part {
    max-width: 1500px;
}

.album_class_page .main_part {
    max-width: 1500px;
}

.album_info_page .main_part {
    max-width: 1500px;
}

ul.show-list.clearfix {
    display: flex;
    flex-wrap: wrap;
}

.show-list .item {
    width: 25%;
    margin: 0 0 30px 0;
    padding: 0 10px;
    transition: all .4s 100ms cubic-bezier(.42, 0, .58, 1);
}

.overlay {
    background: #00000080;
    z-index: 1;
    opacity: 1;
    -webkit-transform: unset;
    transform: unset;
}

.show-list .item:hover .overlay {
    opacity: 0;
    -webkit-transform: unset;
    transform: unset;
}

.show-list .show_pic {
    border-radius: 5px;
    padding-bottom: 100%;
}

.show-list .show_pic img {
    position: relative;
}

.show-list .item .show_name {
    font-size: 18px;
    display: block;
    position: absolute;
    margin-top: 0;
    width: 100%;
    text-align: center;
    transform: translate(0%, -50%);
    top: 50%;
    left: 0;
    opacity: 1;
    font-weight: 500;
    color: #ffffff;
    padding: 20px 0px;
    z-index: 2;
    line-height: 100%;
    height: unset;
}

.show-list .item:hover .show_name {
    transition: all .4s 100ms cubic-bezier(.42, 0, .58, 1);
    color: #ffffff;
    filter: drop-shadow(0px 0px 5px black);
}

/*相簿次分類*/
.subalbum-menu {
    margin: 0;
    padding: 0;
}

.subalbum-menu h2 {
    display: none;
}

/*更多作品*/
.other_subalbum {
    display: flex;
    flex-wrap: wrap;
}

.other_subalbum li {
    background: unset;
    width: 33%;
    margin: 0;
    padding: 10px;
    overflow: hidden;
    border-radius: 5px;
}

.other_subalbum li a {
    border-radius: 5px;
}

.other_subalbum li a img {
    transform: scale(1);
    transition: all .2s 100ms cubic-bezier(.42, 0, .58, 1);
}

.other_subalbum li a:hover img {
    transform: scale(1.1);
    transition: all .2s 100ms cubic-bezier(.42, 0, .58, 1);
}

.other_subalbum li p {
    padding: 10px 0 0;
    text-align: center;
    letter-spacing: 2px;
    color: #0c0c0c;
    font-size: 18px;
    font-weight: bold;
}

.album_fixed_title {
    font-size: 18px;
    letter-spacing: 1px;
    color: #000;
    padding-right: 0px;
    background: unset;
}

.other_album_choice li {
    background: #1a1a1a;
    border-radius: 30px;
    padding: 10px 20px 10px;
}

/*相簿內頁*/
ul.pic-list.clearfix {
    display: flex;
    flex-wrap: wrap;
}

.clearfix:before,
.clearfix:after {
    display: none;
}

.pic-list .item {
    margin: 5px 0%;
    padding: 0 5px;
    width: 25%;
}

.pic-list .show_pic {
    border-radius: 6px;
}

.pic-list .show_pic img {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    position: absolute;
    transform: translate(-50%, -50%) scale(1);
    transition: all .2s 100ms cubic-bezier(.42, 0, .58, 1);
    top: 50%;
    overflow: hidden;
}

.pic-list .item:hover .show_pic img {
    transform: translate(-50%, -50%) scale(1.1);
    transition: all .2s 100ms cubic-bezier(.42, 0, .58, 1);
}

/*相簿最內頁*/
.other_subalbum li a {
    display: block;
    overflow: hidden;
}

@media screen and (max-width: 1024px) {

    .show-list .item,
    .pic-list .item,
    .other_subalbum li {
        width: 50%;
    }
}

@media screen and (max-width: 768px) {

    .show-list .item,
    .pic-list .item,
    .other_subalbum li {
        width: 100%;
        transition: all .4s 100ms cubic-bezier(.42, 0, .58, 1);
    }
}

@media screen and (max-width:500px) {
    .other_subalbum li {
        width: 100%;
        margin: 0 0 20px;
    }

    .show-list .item .show_name {
        font-size: 16px;
        padding: 15px 0px;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*聯絡我們*/
.contact_form {
    max-width: 100%;
    padding: 100px 15%;
    margin: auto;
}

.information_right {
    width: 100%;
    padding: 0;
}

.information_right ul {
    margin: 100px 0 50px
}

.contact_form .information_right h4:before {
    content: 'CONTACT US';
    display: block;
    font-size: 60px;
    margin-bottom: 5px;
    color: #021F59;
    font-family: 'Inter';
    font-weight: 800;
}

h4.blank_letter.f {
    font-size: 30px;
}

.contact_form li {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0 0px 30px 0px;
    margin: 0;
    padding-left: 0;
    border-bottom: unset;
    flex-direction: column;
}

.contact_form li .form__label {
    display: inline-flex;
    justify-content: flex-end;
    width: 100%;
    font-size: 18px;
    color: #000;
    font-weight: 600;
    text-align: left;
    margin-left: 0;
    margin-bottom: 5px;
    letter-spacing: 1px;
    flex-direction: row-reverse;
}

.contact_form li .form__insert {
    display: flex;
    align-items: center;
    width: 100%;
    line-height: 100%;
}

.contact_form li input.noborder,
.contact_form li textarea.noborder {
    border: unset;
    border-bottom: 1px solid #000000;
    background: unset;
}

.noborder {
    padding: 10px 5px;
}

.form select {
    width: 100%;
    padding: 10px 5px;
    border: 1px #ddd solid;
    margin-right: 0;
    margin-bottom: 0;
    color: #000000;
}

.form select option {
    color: #000000;
}

.captcha {
    width: 100%;
}

input[type="checkbox"],
input[type="radio"] {
    margin: 0 5px 0 10px;
}

.contact_form li.last {
    justify-content: flex-end;
    flex-direction: row;
    align-items: flex-start;
}

.contact_form li.last blockquote,
.contact_form li.last cite {
    padding: 10px;
}

.contact_form li.last blockquote {
    border-radius: 5px;
    border: 1px #000000 solid;
    color: #000000;
    margin-right: 20px;
    width: 50%;
}

.contact_form li.last cite {
    border-radius: 5px;
    background: #7d7d7d;
    border: 1px #7d7d7d solid;
    width: 50%;
}

@media screen and (max-width: 1200px) {
    .contact_form {
        padding: 100px 5%;
    }

    .contact_form .information_right h4:before {
        font-size: 50px;
    }
}

@media screen and (max-width: 768px) {
    .contact_form {
        padding: 80px 20px;
        justify-content: center;
    }

    .contact_form .information_right h4:before {
        font-size: 35px;
    }

    .blank_letter {
        margin: 0 auto;
        padding-top: 0;
    }
}

@media screen and (max-width: 450px) {
    .contact_form .information_right h4:before {
        font-size: 30px;
    }
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


@media screen and (max-width: 768px) {

    /* 開啟手機板下方按鈕所需設定 */
    #bottom_menu {
        display: none;
    }

    .footer.with_shopping_mode {
        padding: 30px 0 0px;
    }

    #to_top {
        bottom: 75px;
    }

    /*手機版電話顏色
.footer_info li:nth-child(1) p, .footer_info li:nth-child(1) a {    color: #fff;}*/
}

/*HTML修改*/
.contact_form>a {
    position: relative;
    top: -150px;
}

.in08 table tr td {
    border: unset;
}

.in05 h4 b {
    letter-spacing: 1px;
}

a.look_btn,
a.more_a {
    height: 50px;
    border-radius: 5px;
}

@media screen and (max-width: 1000px) {

    .in06,
    .in07 {
        padding: 50px 20px 60px 20px;
    }

    .in06 li:nth-child(n) {
        padding: 20px 25px;
    }

    .in18 {
        padding: 100px 5% 375px 5%;
    }

    .in19 {
        padding: 50px 5% 60px 5%;
    }
}

@media screen and (max-width: 768px) {
    .in14 span {
        text-align: center;
    }

    .in14 a {
        margin: auto;
    }
}

@media screen and (max-width: 500px) {
    .in07 b {
        font-size: 40px;
    }

    .in07 i {
        margin-top: 0px;
        margin-bottom: 30px;
    }

    .in08 table {
        border-spacing: 0;
    }
}