@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/
html {
    scroll-behavior: unset !important;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}  #ff4137
*/
.stellarnav>ul>li:nth-of-type(3)>ul>li:first-of-type,
.stellarnav>ul>li:first-of-type {
    display: none;
}

.bannerindex:after {
    content: '';
    background: url(https://pic03.eapple.com.tw/wangzihsi/op_logo.svg) center/cover no-repeat;
    display: block;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 440px;
    height: 73px;
    z-index: 9;
    animation: fadein 3.2s;
}

@keyframes fadein {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(.8);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}


.header_area.sticky,
.pageIndex .header_area.sticky {
    background: none;
    opacity: 1;
    transition: all 0.5s ease;
}

.sticky .nav-brand,
.sticky .stellarnav,
body:not(.pageIndex) .nav-brand,
body:not(.pageIndex) .stellarnav {
    pointer-events: auto;
}

.header_area {
    pointer-events: none;
    background: none;
    position: fixed;
    transition: all 0.5s ease;
}

.pageIndex .header_area {
    opacity: 0;
    pointer-events: none;
}

.main_header_area {
    /*background: #fff;*/
    position: relative;
    /*box-shadow: 0 0 10px rgba(0 0 0 / 15%);*/
}

.main_header_area .container {
    max-width: 1800px;
    padding: 0 2%;
}

.navigation {
    padding: 0;
    display: flex;
}

.stellarnav {
    width: max-content;
    margin-left: auto;
    background: rgba(235, 235, 235, 40%);
    padding: 0 30px;
    transition: all 0.3s;
}

.sticky .stellarnav {
    background: rgb(240, 240, 240);
}

.stellarnav ul {
    font-family: 'Open Sans', 'Noto Sans TC', Microsoft JhengHei, sans-serif;
}

.stellarnav li.has-sub>a:after,
.stellarnav li.has-sub>a.dd-toggle {
    content: none;
    display: none;
}

.stellarnav>ul>li>a:not(dd-toggle),
.stellarnav>ul>li.has-sub>a:not(dd-toggle) {
    padding: 0 2px;
    line-height: 72px;
    height: 72px;
    color: #666;
    display: block;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .5px;
    margin: 0 15px;
    transition: all 0.3s;
}

.stellarnav>ul>li:hover>a,
.stellarnav>ul>li.has-sub:hover>a:not(.dd-toggle) {
    color: #a01f24;
}

.stellarnav>ul>li:after {
    position: absolute;
    bottom: 11.5px;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    background: #a01f24;
    width: 4px;
    height: 6px;
    opacity: 0;
    transition: all 0.3s;
}

.stellarnav>ul>li:hover:after {
    opacity: 1;
}

.nav-header {
    max-width: 220px;
}

.nav-brand img {
    display: block;
}

.me_tp_features {
    display: none;
}

/*次分類*/
.stellarnav ul ul {
    padding-top: 7px;
    background: transparent;
    width: 180px;
    left: -12px;
    border-bottom: 12px solid rgba(140 140 140/.8);
    transition: all ease .6s;
    animation: navi 0.3s;
}

@keyframes navi {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.stellarnav li li {
    background: rgba(140 140 140/.8);
    border: none;
    margin-bottom: 0;
}

.stellarnav li li:first-of-type,
.stellarnav>ul>li:nth-of-type(3)>ul>li:nth-of-type(2) {
    padding-top: 12px;
}

.stellarnav li>ul>li>a:before {
    position: absolute;
    top: 20px;
    left: 0;
    content: '';
    background: #a01f24;
    width: 15px;
    height: 1px;
    opacity: 0;
    transition: all 0.3s;
}

.stellarnav li>ul>li:hover>a:before {
    opacity: 1;
}

.stellarnav li li a:not(.dd-toggle),
.stellarnav li li.has-sub>a:not(.dd-toggle),
.stellarnav li li.has-sub:hover li a:not(.dd-toggle) {
    color: #fff;
    font-size: 14px;
    padding: 10px 24px;
    line-height: initial;
    height: auto;
    margin: 0;
    position: relative;
    transition: all ease .3s;
}

.stellarnav li li:hover a:not(.dd-toggle),
.stellarnav li li.has-sub:hover a:not(.dd-toggle),
.stellarnav li li.has-sub:hover li:hover a:not(.dd-toggle) {
    color: #a01f24;
}

.stellarnav li.drop-left ul ul {
    left: auto;
    right: 100%;
}

.stellarnav li ul ul {
    right: auto;
    left: 100%;
}

/*首頁文章功能*/
.news_part {
    padding: 80px 2%;
}

.news_part section {
    max-width: 1000px;
}

.news_list ul li a:hover {
    background: #f8f8f8;
}

.news_list ul li p:after {
    color: #777;
}

.news_list ul li p:after {
    content: none;
}

.i_news_b {
    margin-right: 0;
    text-align: right;
}

.animated-arrow {
    height: 40px;
    line-height: 40px;
    width: 140px;
}

.news_part .title_i_box h4 {
    font-size: 30px;
}



/* 商品下拉超過30個變大 */
.stellarnav.desktop li.bigMenu>ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    left: 0;
    width: 100%;
    position: fixed;
    padding: 20px;
}

.stellarnav.desktop li.bigMenu ul ul {
    top: 100%;
    left: 0;
    width: 100%;
    background: #efefef;
    height: auto;
    max-height: 300px;
    overflow: auto;
}

.stellarnav.desktop li.bigMenu ul ul li {
    margin: 0;
}

.stellarnav.hasBigMenu li.bigMenu li.has-sub>a:after {
    border-left: 6px solid transparent;
    border-bottom: unset;
    border-right: 6px solid transparent;
    border-top: 6px solid #898989;
    right: 5px;
}



/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*預設解除背景輪播*/
#content_main {
    margin-top: 100vh;
}

.bannerindex {
    z-index: 10;
}

.swiper-banner .swiper-slide img {
    width: 100%;
    object-fit: cover;
    height: 100vh;
}

.swiper-pagination {
    display: none;
}

/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
    .bannerindex {
        position: fixed;
        height: 100vh;
        padding-bottom: 0;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner {
    padding: 0;
    min-height: 300px;
}

/*.banner h5:before {
    content: "";
    display: block;
    margin: 0 auto;
    width: 48px;
    background: url(https://pic03.eapple.com.tw/wangzihsi/ba_db.svg) center / cover no-repeat;
    height: 48px;
}

.other_select_page h5:before {
    background: url(https://pic03.eapple.com.tw/wangzihsi/ba_br.svg) center / cover no-repeat;
}

.blog_page.article_a h5:before {
    background: url(https://pic03.eapple.com.tw/wangzihsi/ba_pu.svg) center / cover no-repeat;
}

.blog_page.article_b h5:before {
    background: url(https://pic03.eapple.com.tw/wangzihsi/ba_nb.svg) center / cover no-repeat;
}

.banA h5:before {
    background: url(https://pic03.eapple.com.tw/wangzihsi/ba_gr.svg) center / cover no-repeat;
}

.banC h5:before {
    background: url(https://pic03.eapple.com.tw/wangzihsi/ba_re.svg) center / cover no-repeat;
}
*/
.banner h5 {
    font-size: 32px;
    width: 90%;
    margin: 60px auto 0;
    line-height: 1.8;
    font-weight: 400;
    position: relative;
}

/*.other_select_page .banA h5 {
    visibility: hidden;
}

.other_select_page .banA h5:after {
    content: '服務項目';
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    visibility: visible;
}*/

.promotions_page .banner {
    background-image: url(https://pic03.eapple.com.tw/wangzihsi/pattern.jpg);
}

.article_a .banner {
    background-image: url(https://pic03.eapple.com.tw/wangzihsi/pattern2.jpg);
}

.article_b .banner {
    background-image: url(https://pic03.eapple.com.tw/wangzihsi/pattern3.jpg);
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


#content,
#content_main {
    font-family: 'Open Sans', 'Noto Sans TC', Microsoft JhengHei, sans-serif;
}

.path {
    display: none;
}

.main_part {
    width: 90%;
    max-width: 1400px;
    padding: 50px 0;
}

body:not(.pageIndex):before {
    content: ' ';
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(https://pic03.eapple.com.tw/wangzihsi/bgbg.jpg) center / cover no-repeat;
}

.animated-arrow {
    background: #d3af79;
}

.animated-arrow>b {
    font-weight: 400;
    font-size: 16px;
}

/*下拉*/
.other_select_page .promotion_title,
.other_select_page .other_promotion,
.other_select_page .page {
    display: none;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章*/
.blog_le_t,
.blog_search,
.blog_shareData,
.articel_mainPic {
    display: none;
}

.blog_box {
    margin-top: 20px;
    padding: 0;
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
}

.blog_le {
    padding: 0;
}

.blog_ri {
    padding: 0 0 0 40px;
}

.blog_le .accordion {
    border-radius: 0;
}

.blog_le .accordion li .link i {
    transition: none;
}

.accordion li .link,
.accordion li {
    border-bottom: none;
    font-weight: 500;
}

.blog_le .accordion>li:hover,
.blog_le .accordion>li.open:hover,
.blog_le .accordion>li.on_this_category:hover {
    background: #d3af79 !important;
}

.blog_le .accordion>li:hover .link a,
.blog_le .accordion>li.open:hover .link i,
.blog_le .accordion>li.on_this_category.open:hover .link a,
.blog_le .accordion>li.on_this_category:hover .link a,
.blog_le .accordion>li.on_this_category:hover .link i,
.blog_le .accordion>li.open .link i,
.blog_le .accordion>li.open .link a,
.blog_le .accordion>li.on_this_category .link a,
.blog_le .accordion>li.on_this_category .link i {
    color: #fff !important;
}

.blog_le .accordion>li.open,
.blog_le .accordion>li.on_this_category {
    background: #aaa !important;
}

.accordion li .link a {
    padding: 14px;
    font-weight: 400;
    font-size: 20px;
}

.submenu {
    background: #fff;
}

.submenu a {
    font-family: 'Noto Sans TC';
    color: #444;
    letter-spacing: 0px;
    font-weight: 400;
    padding: 12px 12px 12px 36px;
    border-left: #fff 0 solid;
    transition: all .15s;
}

.submenu a:hover {
    background: #fbfbfb;
    color: #444;
    border-left: #fbfbfb 4px solid;
}

.submenu li.on_this_category a {
    background: #bbb;
    border-color: #bbb;
    pointer-events: none;
}

.submenu li.on_this_category a:hover {
    border-left: none;
}

.submenu a i {
    left: 14px;
}

.blog_subbox {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

.blog_subbox:before {
    content: none;
}

.subbox_item {
    width: 100%;
    margin-bottom: 0;
    border-bottom: none;
    overflow: hidden;
}

.subbox_item a {
    display: flex;
    flex-flow: column wrap;
    gap: 0;
}

.blog_list_le {
    padding: 0;
    width: 100%;
    position: relative;
    height: auto;
    aspect-ratio: 79/62;
    overflow: hidden;
    filter: grayscale(1) opacity(0.8) contrast(0.75);
}

.subbox_item a:hover .blog_list_le {
    filter: none;
}

.blog_list_le img {
    min-width: 100%;
    display: block;
    width: 100%;
    margin: 0 auto;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog_list_ri {
    padding: 20px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, .5) 27%, rgba(0, 0, 0, .85));
    opacity: 1;
    transition: ease .6s;
}

.subbox_item a:hover .blog_list_ri {
    opacity: 0;
    transition: ease .3s;
}

.blog_list_ri h5 {
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 1px;
    color: #fff;
}

.blog_list_ri em {
    color: #ccc;
    font-size: 13px;
    margin: 4px 0 8px;
}

.blog_list_ri p {
    line-height: 150%;
    -webkit-line-clamp: 2;
    letter-spacing: .5px;
    color: #fff;
    margin: 0;
    font-size: 14px;
}

.subbox_item a:before,
.subbox_item a:after {
    content: none;
}

.subbox_item a:hover .blog_list_le:before {
    opacity: 1;
}

.subbox_item a .blog_list_le:before {
    position: absolute;
    background: rgba(199, 158, 99, .9);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    content: '了解更多';
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 1px;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 60px;
    left: 50%;
    top: 50%;
    z-index: 9;
    opacity: 0;
    transition: ease all .6s;
}

.news_related_list li figure {
    aspect-ratio: 79 / 62;
}

h4.blog_category_title {
    display: none;
}

/*內頁*/
.blog_in_page h4.blog_category_title {
    display: block;
    FONT-SIZE: 24PX;
    margin-bottom: 0;
    border-bottom: 1px #ccc solid;
    padding: 0 0 19px;
    font-weight: 400;
}

.blog_box_edit * {
    line-height: 195%;
}

.blog_box_edit {
    color: #444;
    font-size: 15px;
}

.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_next,
.blog_back a.article_btn_prev,
.blog_back a.article_btn_back {
    background: #fff;
    color: #666;
    font-weight: 400;
    border: 1px #dfd4c3 solid;
}

.blog_back a:hover {
    background: #d3af79 !important;
    color: #fff !important;
}

.news_related {
    background: rgba(0, 0, 0, .02);
    padding: 60px 5%;
}

.news_related h6 span:before {
    color: #444;
    letter-spacing: .5px;
    font-weight: 400;
}

.news_related_list {
    display: flex;
    max-width: 1400px;
    justify-content: center;
}

.news_related_list li a p {
    color: #444;
    margin-top: 3px;
}

.news_related_list li {
    width: calc(100% / 4);
}

.news_related_list li a img {
    filter: grayscale(1) opacity(0.8) contrast(0.75);
    transition: all .3s;
}

.news_related_list li a:hover img {
    filter: none;
}

.news_related h6 {
    margin: 0 auto 24px;
}

.lastPage {
    background: #fff;
    color: #666;
    border: 1px #dfd4c3 solid;
    transition: all .3s;
}

.lastPage:hover {
    background: #d3af79;
    color: #fff;
}


/*促銷*/
.promotion_title em,
.other_promotion .pmtTitle span {
    display: none;
}

.promotions_page .edit {
    color: #444;
    line-height: 1.95;
    font-size: 15px;
}

.promotion_title h2 {
    font-weight: 400;
    line-height: 1.1;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*聯絡*/
.contact_content form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-content: flex-start;
    align-items: flex-start;
}

.contact_content .information_right,
.contact_content .information_left {
    width: 100%;
    padding: 0;
}

.contact_form li.last cite:hover i.fa-solid.fa-arrow-right {
    margin: 0;
}

.contact_form li.last cite {
    position: relative;
}

.contact_form li.last input,
.contact_form li.last cite:hover input {
    letter-spacing: 2px;
    width: 80px;
    text-align: right;
    z-index: 1;
    position: relative;
}

.contact_form li.last cite:before {
    content: '確認';
    position: absolute;
    left: 32px;
    top: calc(50% - 1px);
    transform: translateY(-50%);
    letter-spacing: 2px;
}

.contact_form li.last blockquote,
.contact_le_map {
    display: none;
}

.contact_form li.last cite {
    color: #666;
    background: white;
    transition: all .3s;
}

.contact_form li.last cite:hover {
    background: #d3af79;
    color: #fff;
}

.contact_form li.last * {
    transition: none;
}

.contact_form {
    margin-bottom: 0;
    display: flex;
    flex-flow: row wrap;
    grid-gap: 20px;
}

.contact_form li {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    grid-gap: 0;
    border-bottom: none;
}

.contact_form li.last {
    justify-content: flex-end;
}

.contact_form li .form__insert {
    line-height: 170%;
    display: flex !important;
}

.contact_form li .form__label {
    width: 100%;
    text-align: left;
    margin-left: 0;
    margin-bottom: 4px;
    padding-right: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    background: none;
    padding: 0;
    font-weight: 400;
}

.star {
    order: 1;
}

.contact_form li input.noborder,
.contact_form li textarea.noborder {
    border: 1px solid #ccc;
    padding: 8px;
}

.blank_letter {
    font-family: 'Open Sans', 'Noto Sans TC', Microsoft JhengHei, sans-serif;
    padding-top: 0;
    font-weight: 400;
}

.con_edit_box {
    margin-top: 30px;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*footer*/
.footer {
    padding: 100px 0 0;
    background: #202020;
    font-family: 'Open Sans', 'Noto Sans TC', Microsoft JhengHei, sans-serif;
    border-top: 4px solid #a01f24;
}

.footer .center {
    max-width: calc(1400px + 10%);
    padding: 0 5%;
    display: flex;
    flex-flow: row wrap;
    gap: 0;
}

.footer_map {
    max-width: calc(100% - 300px);
    padding-right: 10%;
}

.footer_logo {
    width: 100%;
    max-width: 240px;
    background: url(https://pic03.eapple.com.tw/wangzihsi/w_logo.svg) center no-repeat;
    height: auto;
    background-size: cover;
}

.footer_logo a {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 6/1;
}

.footer_logo img {
    display: none;
}

.footer_info,
.footer_info li {
    padding: 0;
}

.footer_info {
    display: flex;
    flex-flow: column wrap;
    grid-gap: 40px;
    width: 300px;
}

.footer_info ul {
    letter-spacing: 0;
}

.footer_info li p {
    letter-spacing: 0px;
    color: #fff;
    line-height: 175%;
    display: block;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: .5px;
}

.footer_info li p.add {
    margin-bottom: 0;
}

.footer_info li p a {
    display: block;
    color: #fff;
    width: 100%;
    pointer-events: none;
}

.footer_info li p:before {
    color: #fff;
    font-weight: 400;
}

.footer_info li:nth-child(2) {
    display: none;
}

.copy,
.copy a,
.copy a:hover {
    color: #343434;
}

.copy {
    font-size: 14px;
    white-space: inherit;
    border-top: none;
    background: #141414;
    margin-top: 60px;
}

.box_link {
    position: static;
    max-width: 100%;
    justify-content: flex-start;
    flex-flow: row wrap;
    order: 1;
}

.box_link a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    border-color: #aaa;
    padding: 0;
    font-size: 20px;
}

.box_link a i:before {
    color: #fff;
    transition: all .3s ease;
}

.box_link a:hover i:before {
    color: #999;
}

.fa-instagram:before {
    content: "\f167";
}

/*左浮動*/
#to_top {
    bottom: 52px;
    left: auto;
    right: 24px;
    width: 36px;
    height: 36px;
    color: transparent;
    background: #404040;
    box-shadow: none;
    padding-top: 6px;
}

#to_top i.top {
    width: 14px;
    height: 14px;
    top: 15px;
    transform: translateY(-50%);
}

#to_top i.top:before,
#to_top i.top:after {
    height: 8px;
    width: 2px;
    top: 0;
    left: 46%;
}

#to_top i:before,
#to_top i:after {
    background: #fff;
}

/*.footer:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    background: url(https://pic03.eapple.com.tw/wangzihsi/footer.png) center/cover no-repeat;
    height: 100%;
    z-index: 1;
}*/


@media screen and (max-width: 1360px) {
    .blog_subbox {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 1024px) {
    .news_part .title_i_box h4 {
        font-size: 28px;
    }

    .header_area {
        padding: 20px 0 0;
    }

    .stellarnav {
        margin: 20px auto 0;
    }

    .banner h5 {
        margin-top: 140px;
    }

    .blog_subbox {
        grid-template-columns: 1fr;
    }

    .news_related_list li {
        width: calc(100% / 2);
    }

    .news_related_list li:nth-of-type(n+3) {
        display: none;
    }

    .contact_content form {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact_content {
        padding: 0;
    }

    .con_edit_box,
    .contact_form {
        margin-top: 20px;
    }

    .con_edit_box li {
        width: 100%;
        padding-bottom: 0;
    }

    .blank_letter {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .contact_form li.last {
        margin-top: 0;
    }
}

@media screen and (max-width: 768px) {

    /* 開啟手機板下方按鈕所需設定 */
    .footer.with_shopping_mode {
        padding: 48px 0 54px;
    }

    #to_top {
        bottom: 65px;
        right: 15px;
    }

    .bannerindex:after {
        width: 280px;
        height: 46.45px;
    }

    .header_area,
    .header_area.sticky {
        background: rgba(255, 255, 255, .85) !important;
    }

    .nav-header {
        max-width: 200px;
    }

    .header_area {
        padding: 15px 0;
    }

    .stellarnav.mobile {
        top: -10px;
        margin: 0;
        padding: 0;
        background: none;
    }

    .stellarnav .menu-toggle {
        padding: 10px 0;
    }

    .stellarnav ul ul {
        animation: none;
    }

    .stellarnav {
        transition: none;
    }

    .stellarnav li.has-sub>a.dd-toggle {
        display: inline-block;
    }

    .stellarnav.mobile>ul {
        border-top: none;
        background: rgb(240, 240, 240);
    }

    .stellarnav.mobile.right .close-menu,
    .stellarnav.mobile.left .close-menu {
        background: #aaa;
    }

    .stellarnav a {
        color: #fff;
    }

    .stellarnav .icon-close:before,
    .stellarnav .icon-close:after {
        border-color: #fff;
    }

    .stellarnav.mobile li a,
    .stellarnav.mobile>ul>li {
        border-bottom: none;
    }

    .stellarnav.mobile li.open {
        background: transparent;
        padding: 0;
    }

    .stellarnav ul ul {
        padding-top: 0;
        left: 0;
    }

    .stellarnav>ul>li>a:not(dd-toggle),
    .stellarnav>ul>li.has-sub>a:not(dd-toggle) {
        height: auto;
        line-height: 150%;
        margin: 8px 12px;
    }

    .stellarnav>ul>li>a,
    .stellarnav>ul>li.has-sub>a:not(.dd-toggle),
    .stellarnav.mobile>ul>li>a {
        padding: 10px 44px 10px 10px;
    }

    .stellarnav.mobile>ul>li>a.dd-toggle {
        margin: 0 12px;
        padding: 8px;
    }

    .stellarnav>ul>li:after {
        bottom: auto;
        top: 38px;
        left: 46px;
        transform: none;
    }

    .stellarnav.mobile>ul>li.open>a.dd-toggle {
        padding: 11px 8px;
    }

    .stellarnav>ul>li:nth-of-type(2):after {
        left: 54px;
    }

    .news_list ul li a,
    .news_list ul li p {
        text-align: left;
    }

    .news_part .title_i_box {
        margin-bottom: 20px;
    }

    .news_part {
        padding: 80px 5% 40px;
    }

    .news_part .title_i_box h4 {
        font-size: 26px;
        color: black;
        font-weight: 400;
        letter-spacing: 2px;
    }

    .footer .center {
        flex-direction: column;
    }

    .footer_map,
    .footer_info {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .footer_info li p {
        line-height: 160%;
        margin-bottom: 15px;
    }

    .footer_logo {
        max-width: 220px;
    }

    .footer_info {
        grid-gap: 20px;
    }

    .footer_map {
        margin-top: 40px;
    }

    .copy {
        padding: 12px 5%;
    }

    .banner {
        min-height: 200px;
    }

    .banner h5 {
        margin-top: 60px;
        font-size: 26px;
        letter-spacing: 2px;
    }

    .blog_list_ri h5 {
        font-size: 18px;
    }

    .blog_ri {
        padding: 0;
    }

    .blog_le,
    .blog_ri {
        margin-bottom: 0;
    }

    .subbox_item a .blog_list_le:before {
        font-size: 16px;
        font-weight: 400;
        width: 140px;
        height: 40px;
    }

    .blog_in_page h4.blog_category_title {
        FONT-SIZE: 22PX;
    }

    .blog_in_page .blog_box {
        margin-top: 0;
    }

    .news_related_list li {
        width: 100%;
    }

    .news_related_list {
        flex-flow: column wrap;
    }

    .news_related {
        padding: 40px 5% 20px;
    }

    .promotion_title h2 {
        font-size: 22px;
        margin-top: 10px;
    }

    .other_promotion .pmtTitle h3 {
        font-size: 15px;
    }

    .promotions_page .main_part {
        padding: 50px 0 0;
    }

    .accordion li .link a {
        padding: 18px;
    }

}