/*********** 前後台編輯器區塊共用的CSS設定 ***********/
/* ------- index about ------ */

@media screen and (max-width: 1280px) {

}
@media screen and (max-width: 1000px) {

}
@media screen and (max-width: 767px) {

}
/* ------- /index about ------ */

/* ------- index service ------- */
.s_layout{
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* .s_type  */
.s_layout .s_type{
    position: relative;
    box-sizing: border-box;
    padding-bottom: 45px;
    width: 100%;
}
.s_layout .s_type > .title{
    display: flex;
    width: fit-content;
    align-items: baseline;
    margin: 0 auto 36px;
}
.s_layout .s_type > .title h2{
    position: relative;
    margin-left: 24px;
}
.s_layout .s_type > .title h2::before{
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: #F4DF4C;
    left: 0;
    top: -15px;
}

.s_layout .s_type .s_row{
    position: relative;
    box-sizing: border-box;
    display: flex;
    width: 100%;
}
.s_layout .s_type .s_row .s_col{
    position: relative;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    width: calc(100% / 3);
}
.s_layout .s_type .s_row .s_col .s_pic{
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}
.s_layout .s_type .s_row .s_col .s_pic::before{
    content: '';
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(34,34,34,.7);
    z-index: 1;
}
.s_layout .s_type .s_row .s_col .s_pic img{
    transform: scale(1.04);
    filter: blur(5px);
    width: 100%;
    max-width: inherit;
    object-fit: cover;
    height: 100% !important;
    min-height: 520px;
    transition: all .3s ease;
}
.s_layout .s_type .s_row .s_col:hover .s_pic img{
    filter: blur(0px);
}
.s_layout .s_type .s_row .s_col .s_txt{
      position: absolute;
    box-sizing: border-box;
    left: 0;
    right: 0;
    width: 60%;
    max-width: 380px;
    top: 120px;
    margin: 0 auto;
    z-index: 2;
    opacity: 1;
    visibility: visible;
    transition: opacity .3s ease, visibility .3s ease;
}
.s_layout .s_type .s_row:hover .s_col .s_txt{
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease;
}
.s_layout .s_type .s_row:hover .s_col:hover .s_txt{
    opacity: 1;
    visibility: visible;
}
.s_layout .s_type .s_row .s_col .s_txt .s_num{
    position: absolute;
    font-family: "Poppins", sans-serif;
    color: #F3DF4C;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin: 0;
    left: 0;
    top: 0;
}
.s_layout .s_type .s_row .s_col .s_txt h3{
    position: relative;
    font-family: "Noto Sans TC", sans-serif;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 0.15em;
    line-height: 1.2;
    margin: 0 0 30px;
    text-align: right;
}
.s_layout .s_type .s_row .s_col .s_txt p{
    position: relative;
    font-family: "Noto Sans TC", sans-serif;
    color: #D6D6D6;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 0.05em;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 92px;
}
.s_layout .s_type .s_row .s_col .index-more{
    position: relative;
    color: #fff;
    margin-top: 60px;
    margin-left: auto;
}
.s_layout .s_type .s_row .s_col .index-more::before {
    content: '';
    position: absolute;
    display: inline-block;
    box-sizing: border-box;
    height: 80px;
    width: 80px;
    background: transparent;
    border: 2px solid rgba(204,204,204,.5);
    border-radius: 100%;
    top: 0;
    right: 2px;
    z-index: -1;
    transition: transform .3s cubic-bezier(.645, .045, .355, 1.000);
}
.s_layout .s_type .s_row .s_col  .index-more:hover:before {
    transform: scale(1.5) translate3d(-0.1em, 0, 0);
    border: 1px solid #F4DF4C;
    background: #F4DF4C;
}
.s_layout .s_type .s_row .s_col .index-more::after {
    content: '';
    position: absolute;
    background: url('../../images/common/index/more_ic_w.webp') no-repeat;
    display: inline-block;
    width: 16px;
    height: 16px;
    background-size: contain;
    top: 0;
    bottom: 0;
    z-index: 0;
    margin: auto 0;
    margin-left: 20px;
}


@media screen and (max-width: 1440px) {

}
@media screen and (max-width: 1280px) {
    .s_layout .s_type .s_row .s_col .s_txt{
        width: 75%;
        top: 80px;
    }
    .s_layout .s_type .s_row .s_col .s_pic img{
        min-height: 420px;
    }
    .s_layout .s_type .s_row .s_col .index-more{
        margin-top: 40px;
    }
}
@media screen and (max-width: 1000px) {
    .s_layout .s_type {
        padding-bottom: 30px;
    }
    .s_layout .s_type > .title {
        margin: 0 auto 30px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        line-height: 2.6;
    }
    .s_layout .s_type > .title h2::before{
        display: none;
    }
    .s_layout .s_type > .title::before {
        content: '';
        position: absolute;
        width: 45px;
        height: 3px;
        background: #F4DF4C;
        left: 0;
        right: 0;
        top: -10px;
        margin: 0 auto;
    }
    .s_layout .s_type > .title h2{
        margin-left: 0;
    }
    .s_layout .s_type .s_row{
        flex-direction: column;
        align-items: center;
    }
    .s_layout .s_type .s_row .s_col{
            width: calc(100% / 1);
    }
    .s_layout .s_type .s_row .s_col .s_txt {
        width: 80%;
        top: 65px;
        max-width: inherit;
    }
    .s_layout .s_type .s_row .s_col .s_txt .s_num{
        font-size: 32px;
    }
    .s_layout .s_type .s_row .s_col .s_txt h3{
        font-size: 26px;
    }
    .s_layout .s_type .s_row .s_col .s_txt p{
        font-size: 15px;
        -webkit-line-clamp: inherit;
        height: auto;
    }
    .s_layout .s_type .s_row .s_col .index-more{
        margin-top: 30px;
    }
    .s_layout .s_type .s_row .s_col .index-more {
        width: 160px;
        height: 70px;
        line-height: 70px;
        font-size: 18px;
    }
    .s_layout .s_type .s_row .s_col .index-more::before{
        width: 70px;
        height: 70px;
    }
    .s_layout .s_type .s_row .s_col  .index-more::after {
        width: 14px;
        height: 14px;
    }

    .s_layout .s_type .s_row .s_col .s_pic{
        width: 100%;
        height: 360px;
        max-height: 360px;
    }
    .s_layout .s_type .s_row .s_col .s_pic img {
        min-width: 640px;
        min-height: 360px !important;
        width: 100%;
    }
}
@media screen and (max-width: 767px) {
    .s_layout .s_type .s_row .s_col .s_pic{
        width: 100%;
        height: 400px;
        max-height: 400px;
    }
    .s_layout .s_type .s_row .s_col .s_pic img {
        min-width: 640px;
        min-height: 400px !important;
        width: 100%;
    }
}

/* .s_process  */
.s_layout .s_process{
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 45px 0 0px;
}
.s_layout .s_process::before{
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    top: calc(0% + 50px);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: rgba(190,190,190,.3);
}
.s_layout .s_process > .title{
    position: relative;
    line-height: 3.6;
    margin: 0 auto 36px;
}
.s_layout .s_process > .title::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: #F4DF4C;
    left: 0;
    right: 0;
    top: -10px;
    margin: 0 auto;
}
.s_layout .s_process .s_content{
    position: relative;
    box-sizing: border-box;
}
.s_layout .s_process .s_content .s_cpic{
    position: relative;
    box-sizing: border-box;
    width: fit-content;
    height: 784px;
    padding: 43px;
    margin: 0 auto;
    z-index: 2;
}
.s_layout .s_process .s_content .s_cpic svg{
    display:block;
    width: 698px;
    height: 698px;
}
/* ====== overlay 基本設定 ====== */
.s_layout .s_process .s_content .s_cpic .segOverlay{
    position: absolute;
    top: 43px;
    left: 43px;
    width: 698px;
    height: 698px;
    border-radius: 50%;
    opacity: 0;
    background: #F5DF4D;
    transition: opacity .35s ease;
    pointer-events: none;
    z-index: 3;
    contain: paint;
    will-change: opacity, transform;
}
/* ====== 三塊扇形裁切 ====== */
.segOverlay.seg1{
    clip-path: path("M349 349 L349 698 A349 349 0 0 1 46.8 174.5 Z");
}
.segOverlay.seg2{
    clip-path: path("M349 349 L46.8 174.5 A349 349 0 0 1 651.2 174.5 Z");
}
.segOverlay.seg3{
    clip-path: path("M349 349 L651.2 174.5 A349 349 0 0 1 349 698 Z");
}
/* ====== 數字樣式（預設不顯示） ====== */
.segOverlay.seg1::after{
    content: "1";
    position: absolute;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    font-size: 250px;
    line-height: 1;
    text-align: center;
    color: transparent;
    -webkit-text-stroke: 1.5px #fff;
    left: 12%;
    top: 48.5%;
    opacity: 0;
    transform: scale(.95);
    transition: transform .3s ease, opacity .3s ease;
    z-index: 4;
}
.segOverlay.seg2::after{
    content: "2";
    position: absolute;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    font-size: 250px;
    line-height: 1;
    text-align: center;
    color: transparent;
    -webkit-text-stroke: 1.5px #fff;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
    opacity: 0;
    transform: scale(.95);
    transition: transform .3s ease, opacity .3s ease;
    z-index: 4;
}
.segOverlay.seg3::after{
    content: "3";
    position: absolute;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    font-size: 250px;
    line-height: 1;
    text-align: center;
    color: transparent;
    -webkit-text-stroke: 1.5px #fff;
    right: 12%;
    top: 48.5%;
    opacity: 0;
    transform: scale(.95);
    transition: transform .3s ease, opacity .3s ease;
    z-index: 4;
}

/* ====== hover ====== */
.s_layout .s_process .s_content:has(.s_item .s_box:nth-child(1):hover) .segOverlay.seg1,
.s_layout .s_process .s_content:has(.s_item .s_box:nth-child(2):hover) .segOverlay.seg2,
.s_layout .s_process .s_content:has(.s_item .s_box:nth-child(3):hover) .segOverlay.seg3{
    opacity: 1;
}
.s_layout .s_process .s_content:has(.s_item .s_box:nth-child(1):hover) .segOverlay.seg1::after,
.s_layout .s_process .s_content:has(.s_item .s_box:nth-child(2):hover) .segOverlay.seg2::after,
.s_layout .s_process .s_content:has(.s_item .s_box:nth-child(3):hover) .segOverlay.seg3::after{
    opacity: 1;
    transform: scale(1);
}
/* SVG hover 命中設定（保留效果） */
.s_layout .s_process .s_content .s_cpic svg .segHit{
    cursor:inherit;
}
.s_layout .s_process .s_content .s_cpic svg .segHit image{
    pointer-events: all;
}
.s_layout .s_process .s_content .s_cpic::before{
    content: '';
    position: absolute;
    display: block;
    box-sizing: border-box;
    top: 18px;
    right: 18px;
    left: 18px;
    bottom: 18px;
    border-radius: 100%;
    background: #FFFFFF;
    z-index: -1;
}
.s_layout .s_process .s_content .s_cpic::after{
    content: '';
    position: absolute;
    display: block;
    box-sizing: border-box;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    border-radius: 100%;
    border: 3px solid rgba(245,223,77,.8);
    z-index: -1;
}
.s_layout .s_process .s_content .s_item{
    position: absolute;
    display: flex;
    width: 100%;
    max-width: 1440px;
    top: 36%;
    left: 0;
    right: 0;
    margin: 0 auto;
    justify-content: space-between;
    z-index: 4;
    pointer-events: none;
}
.s_layout .s_process .s_content .s_item .s_box{
    position: relative;
    box-sizing: border-box;
    width: 22.75%;
    height: fit-content;
    padding: 0 45px;
    pointer-events: auto;
}
.s_layout .s_process .s_content .s_item .s_box:nth-child(2){
    position: relative;
}
.s_layout .s_process .s_content .s_item .s_box:nth-child(2)::before{
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: #fff;
    z-index: -2;
    pointer-events: none;
}

/* 中間灰圈（內圈） */
.s_layout .s_process .s_content .s_item .s_box:nth-child(2)::after{
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: #eee;
    z-index: -1;
    pointer-events: none;
}
.s_layout .s_process .s_content .s_item .s_box .s_txt{
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.s_layout .s_process .s_content .s_item .s_box:nth-child(1) .s_txt{
    align-items: flex-end;
}
.s_layout .s_process .s_content .s_item .s_box:nth-child(2) .s_txt{
    align-items: center
}
.s_layout .s_process .s_content .s_item .s_box:nth-child(3) .s_txt{
    align-items: flex-start;
}
.s_layout .s_process .s_content .s_item .s_box .s_txt .s_icon{
    position: relative;
    box-sizing: border-box;
    display: flex;
    width: 84px;
    height: 84px;
    background: #fff;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: all .3s ease;
}
.s_layout .s_process .s_content .s_item .s_box:hover .s_txt .s_icon{
    background: #F5DF4D;
}
.s_layout .s_process .s_content .s_item .s_box .s_txt .s_icon .s_ic1{
    display: block;
    transition: all .3s ease;
}
.s_layout .s_process .s_content .s_item .s_box .s_txt .s_icon .s_ic2{
    display: none;
    transition: all .3s ease;
}
.s_layout .s_process .s_content .s_item .s_box:hover .s_txt .s_icon .s_ic1{
    display: none;
}
.s_layout .s_process .s_content .s_item .s_box:hover .s_txt .s_icon .s_ic2{
    display: block;
}
.s_layout .s_process .s_content .s_item .s_box .s_txt h3{
    position: relative;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 30px;
    color: #444444;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1.2;
    margin: 0 0 15px;
    transition: all .3s ease;
}
.s_layout .s_process .s_content .s_item .s_box:hover .s_txt h3{
    color: #F5DF4D;
}
.s_layout .s_process .s_content .s_item .s_box .s_txt .s_list{
    position: relative;
    box-sizing: border-box;
    list-style-type: none;
    padding: 0;
    margin: 0 ;
}
.s_layout .s_process .s_content .s_item .s_box .s_txt .s_list li{
    position: relative;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 20px;
    font-weight: normal;
    color: #555;
    letter-spacing: 0.15em;
    line-height: 1.8;
}
.s_layout .s_process .s_content .s_item .s_box .s_txt .s_list li::before{
    content: '';
    position: relative;
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #F4DF4C;
    border-radius: 100%;
    margin-bottom: 3px;
    margin-right: 10px;
}

/* ===============================
    hover SVG 扇形 -> 遮罩 + 數字
================================ */
.s_layout .s_process .s_content:has(.segHit1:hover) .segOverlay.seg1,
.s_layout .s_process .s_content:has(.segHit2:hover) .segOverlay.seg2,
.s_layout .s_process .s_content:has(.segHit3:hover) .segOverlay.seg3{
    opacity: 1;
}

.s_layout .s_process .s_content:has(.segHit1:hover) .segOverlay.seg1::after,
.s_layout .s_process .s_content:has(.segHit2:hover) .segOverlay.seg2::after,
.s_layout .s_process .s_content:has(.segHit3:hover) .segOverlay.seg3::after{
    opacity: 1;
    transform: scale(1);
}
/* ===============================
    hover SVG 扇形 -> 同步旁邊文字/ICON
================================ */
/* 標題變色 */
.s_layout .s_process .s_content:has(.segHit1:hover) .s_item .s_box:nth-child(1) .s_txt h3,
.s_layout .s_process .s_content:has(.segHit2:hover) .s_item .s_box:nth-child(2) .s_txt h3,
.s_layout .s_process .s_content:has(.segHit3:hover) .s_item .s_box:nth-child(3) .s_txt h3{
    color: #F5DF4D;
}
/* icon 背景變色 */
.s_layout .s_process .s_content:has(.segHit1:hover) .s_item .s_box:nth-child(1) .s_txt .s_icon,
.s_layout .s_process .s_content:has(.segHit2:hover) .s_item .s_box:nth-child(2) .s_txt .s_icon,
.s_layout .s_process .s_content:has(.segHit3:hover) .s_item .s_box:nth-child(3) .s_txt .s_icon{
    background: #F5DF4D;
}
/* icon 圖片切換：ic1 隱藏、ic2 顯示 */
.s_layout .s_process .s_content:has(.segHit1:hover) .s_item .s_box:nth-child(1) .s_txt .s_icon .s_ic1,
.s_layout .s_process .s_content:has(.segHit2:hover) .s_item .s_box:nth-child(2) .s_txt .s_icon .s_ic1,
.s_layout .s_process .s_content:has(.segHit3:hover) .s_item .s_box:nth-child(3) .s_txt .s_icon .s_ic1{
    display: none;
}
.s_layout .s_process .s_content:has(.segHit1:hover) .s_item .s_box:nth-child(1) .s_txt .s_icon .s_ic2,
.s_layout .s_process .s_content:has(.segHit2:hover) .s_item .s_box:nth-child(2) .s_txt .s_icon .s_ic2,
.s_layout .s_process .s_content:has(.segHit3:hover) .s_item .s_box:nth-child(3) .s_txt .s_icon .s_ic2{
    display: block;
}
@media screen and (max-width: 1440px) {
    .s_layout .s_process .s_content .s_cpic{
        transform: scale(0.8);
        transform-origin: center;
        margin: -80px auto;
    }
    .s_layout .s_process .s_content .s_item{
        top: 32%;
    }
    .s_layout .s_process .s_content .s_item .s_box{
        padding: 0 15px;
    }
    .s_layout .s_process .s_content .s_item .s_box:nth-child(2)::before{
        width: 360px;
        height: 360px;
    }
    .s_layout .s_process .s_content .s_item .s_box:nth-child(2)::after{
        width: 320px;
        height: 320px;
    }
}
@media screen and (max-width: 1280px) {
    .s_layout .s_process .s_content .s_item .s_box{
        width: 26.5%;
    }
    .s_layout .s_process .s_content .s_cpic{
        transform: scale(0.6);
        transform-origin: center;
        margin: -156px auto;
    }
    .s_layout .s_process .s_content .s_item {
        top: 26%;
    }
    .s_layout .s_process .s_content .s_item .s_box:nth-child(2)::before{
        width: 300px;
        height: 300px;
    }
    .s_layout .s_process .s_content .s_item .s_box:nth-child(2)::after{
        width: 260px;
        height: 260px;
    }
}
@media screen and (max-width: 1000px) {
    .s_layout .s_process {
        padding: 30px 0 0px;
    }
    .s_layout .s_process > .title {
        margin: 0 auto 30px;
        align-items: center;
        text-align: center;
        line-height: 2.6;
    }
    .s_layout .s_process > .title::before {
        content: '';
        position: absolute;
        width: 45px;
        height: 3px;
        background: #F4DF4C;
        left: 0;
        right: 0;
        top: -10px;
        margin: 0 auto;
    }
    .s_layout .s_process::before{
        display: none;
    }
    .s_layout .s_process .s_content{
        display: flex;
        justify-content: center;
        flex-direction: column;
    }
    .s_layout .s_process .s_content .s_cpic{
        display: none;
    }
    .s_layout .s_process .s_content .s_item{
        position: relative;
        display: flex;
        flex-direction: row;
        top: inherit;
        align-items: center;
        flex-wrap: wrap;
    }
    .s_layout .s_process .s_content .s_item .s_box{
        width: 33.33%;
    }
    .s_layout .s_process .s_content .s_item .s_box:nth-child(1) .s_txt,
    .s_layout .s_process .s_content .s_item .s_box:nth-child(2) .s_txt,
    .s_layout .s_process .s_content .s_item .s_box:nth-child(3) .s_txt{
        align-items: center
    }
    .s_layout .s_process .s_content .s_item .s_box .s_txt h3{
        font-size: 26px;
        margin-bottom: 10px;
    }
    .s_layout .s_process .s_content .s_item .s_box .s_txt .s_list li{
        font-size: 18px;
    }
    .s_layout .s_process .s_content .s_item .s_box:nth-child(2)::before,
    .s_layout .s_process .s_content .s_item .s_box:nth-child(2)::after{
        display: none;
    }
    .s_layout .s_process .s_content .s_item .s_box+.s_box{
        margin-top: 30px;
    }
}
@media screen and (max-width: 767px) {
    .s_layout .s_process .s_content .s_item {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
    }
    .s_layout .s_process .s_content .s_item .s_box{
        width: 100%;
    }
}
/* ------- /s_process ------- */
/* ------- index h_layout -------*/
.h_layout{
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
}

.h_layout .h_col{
    position: relative;
    box-sizing: border-box;
    width: calc(100% / 5);
    max-width: 382px;
    height: 132px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    background: transparent;
    transition: all .3s ease;
}
.h_layout .h_col:hover{
    background: #FFFFFF;
}

.h_layout .h_col img{
    mix-blend-mode: multiply;
    filter: grayscale(1);
    transition: all .3s ease;
}
.h_layout .h_col:hover img{
    filter: grayscale(0);
}

.h_layout .h_col:nth-child(1),
.h_layout .h_col:nth-child(5),
.h_layout .h_col:nth-child(6),
.h_layout .h_col:nth-child(10),
.h_layout .h_col:nth-child(11),
.h_layout .h_col:nth-child(15){
    max-width: 260px;
    height: 132px;
}
@media screen and (max-width: 1000px) {
    .h_layout .h_col:nth-child(1), .h_layout .h_col:nth-child(5), .h_layout .h_col:nth-child(6), .h_layout .h_col:nth-child(10), .h_layout .h_col:nth-child(11), .h_layout .h_col:nth-child(15){
        max-width: inherit;
    }
    .h_layout .h_col{
        width: calc(100% / 3 - 20px);
        margin-bottom: 15px;
    }
    .h_layout .h_col img {
        mix-blend-mode: multiply !important;
    }
}

/* ------- about1+2 ------- */
.a_layout {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}
.a_layout span {
    position: relative;
    box-sizing: border-box;
    font-size: 55px;
    font-weight: 300;
    color: #505050;
    letter-spacing: 0.02em;
    line-height: 1.2;
    font-family: "Poppins", sans-serif;
}
.a_layout span b {
    font-weight: 600;
    color: #F2DF4C;
}

.a_layout h2 {
    position: relative;
    box-sizing: border-box;
    display: block;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.15em;
    line-height: 1.2;
    margin: 0;
}
.a_layout h3 {
    position: relative;
    box-sizing: border-box;
    display: block;
    text-align: left;
    color: #545454;
    font-family: "Noto Sans TC", sans-serif;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 0.15em;
    line-height: 1.2;
    margin: 0 0 20px;
}
.a_layout p{
    margin: 0;
    font-family: "Noto Sans TC", sans-serif;
    font-weight: normal;
    color: #545454;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 2;
}
.a_layout .a_item,
.a_layout .a_item .a_col {
    position: relative;
    box-sizing: border-box;
}
.a_layout .a_item:first-of-type {
    display: flex;
}
.a_layout .a_item:last-of-type {
    display: flex;
    align-items: center;
    /* padding: 0 55px 0 25px; */
    padding: 0;
    margin: -60px 0 0;
}
.a_layout .a_item:last-of-type .a_col {
    width: 30%;
    padding: 60px 0 0;
}
.a_layout .a_item:last-of-type .a_col:first-of-type:before{
    content: '';
    position: absolute;
    top: 58%;
    transform: translateY(-50%);
    right: -30px;
    width: 50px;
    height: 3px;
    background: #F5DF4D;
    z-index: 1;
}
.a_layout .a_item:last-of-type .a_col:last-of-type {
    width: 70%;
    background: #F5F5F5;
    padding: 50px 80px;
}
@media screen and (max-width: 1280px) {
    .a_layout .a_item:last-of-type {
        padding: 0 15px;
        margin: -80px 0 0;
    }
    .a_layout .a_item:last-of-type .a_col:first-of-type:before {
        width: 45px;
        right: -45px;
    }

}
@media screen and (max-width: 1000px) {
    .a_layout span {
        font-size: 34px;
    }
    .a_layout h2{
        font-size: 20px;
    }
    .a_layout h3 {
        font-size: 18px;
        margin: 0 0 5px;
    }
    .a_layout .a_item:first-of-type {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .a_layout .a_item:last-of-type{
        margin: 0;
        padding: 0;
        flex-direction: column;
    }
    .a_layout .a_item:last-of-type .a_col {
        width: 100%;
        padding: 30px 0;
        text-align: center;
    }
    .a_layout .a_item:last-of-type .a_col:last-of-type {
        width: 100%;
    }
    .a_layout .a_item:last-of-type .a_col:first-of-type:before {
        width: 3px;
        height: 30px;
        bottom: -15px;
        top: unset;
        left: 0;
        right: 0;
        margin: 0 auto;
        transform: unset;
    }
    .a_layout h3{
        text-align: center;
    }
    .a_layout p {
        line-height: 1.75;
        font-size: 15px;
    }
        .a_layout .a_item:last-of-type .a_col:last-of-type {
        padding: 30px;
    }
}
/* ------- /about1+2 ------- */
/* ------- /index h_layout ------ */
/* ----- products-detail ----- */
.p_layout{
    position: relative;
    box-sizing: border-box;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    text-align: left;
}
.p_layout h5{
    position: relative;
    font-size: 30px;
    color: #535353;
    letter-spacing: 0.15em;
    line-height: 1.5;
    font-weight: bold;
    padding: 0;
    margin: 0 0 20px;
}
.p_layout .p_row{
    position: relative;
    display: flex;
}
.p_layout .p_row .p_col1{
    position: relative;
    box-sizing: border-box;
    width: 58.5%;
    padding-left: 2%;
    padding-right: 5%;
}
.p_layout .p_row .p_col2{
    position: relative;
    box-sizing: border-box;
    width: 41.5%;
}
.p_layout .p_row .p_col1 > p{
    font-size: 16px;
    color: #535353;
    letter-spacing: 0.08em;
    line-height: 1.5;
    font-weight: normal;
    margin:  0 0 45px;
}

@media screen and (max-width:1000px) {
    .p_layout h5{
        font-size: 24px;
    }
    .p_layout .p_row .p_col1 > p{
        font-size: 15px;
        margin-bottom: 30px;
    }
    .p_layout .p_row {
        display: flex;
        flex-direction: column;
    }
    .p_layout .p_row .p_col1,
    .p_layout .p_row .p_col2{
        width: 100%;
        padding: 0;
    }
    .p_layout .p_row .p_col1 > .p_pic{
                width: fit-content;
        margin: 0 auto;
    }
    .p_layout .p_row .p_col2 > .p_pic{
        width: fit-content;
        margin: 30px auto 0;
    }
}

/* ----- /products-detail ----- */
.contact-info-list {
    list-style-type: none;
    padding: 0;
    margin: 10px 0 0;
}
.contact-info-list li,
.contact-info-list i,
.contact-info-list span {
    display: inline-block;
    vertical-align: middle;
}
.contact-info-list li {
    width: calc(100% / 4);
    padding: 0;
    font-size: 18px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
}
.contact-info-list i {
    position: relative;
    box-sizing: border-box;
    width: 55px;
    height: 55px;
    background: #F5DF4D;
    border-radius: 100%;
}
.contact-info-list i::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    background: #F5DF4D;
    z-index: -1;
    border-radius: 100%;
}
.contact-info-list i::before{
    display: inline-block;
    font-family: 'icon-font-5' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #555555;
    font-size: 18px;
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
}
.contact-info-list span,
.contact-info-list a {
    position: relative; 
    width: calc(100% - 70px); 
    display: inline-block; 
    vertical-align: middle; 
    margin-left: 10px;
    font-size: 15px;
}
.terms-title {
    color: #F5DF4D;
    font-size: 17px;
    font-weight: normal;
    margin: 0 0 0.3em;
}
@media screen and (max-width: 1280px) {
   
}
@media screen and (max-width: 1000px) {
    .products-editor-pics .col {
        width: 50%;
    }
    .contact-info-list li {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 5px;
        padding: 0;
        width: auto;
        float: none;
    }
    .contact-info-list .ic-wrap {
        width: 60px;
    }
}
@media screen and (max-width: 960px) {

}
@media screen and (max-width: 767px) {

}
@media screen and (max-width: 600px) {
}
@media screen and (max-width: 500px) {
    .products-editor-pics .col {
        width: 100%;
    }
}
@media screen and (max-width: 420px) {

}