@charset "utf-8";
.ab_t {
    font-size: 18px;
    font-weight: 400;
    color: #C8A063;
    letter-spacing: 0;
    line-height: 1.2;
    margin: 0 auto 8px;
}
.ab_txt {
    margin: 0;
    line-height: 2;
}
/*------------ about-editor ------------*/
/* 關於我們區塊 */
.about_wrap_section {
    /* padding-top: 80px; */
    /* padding-bottom: 80px; */
}

.about_flex_box {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
}

.about_img_col_rwd {
    flex: 0 1 auto;
}

.about_text_col_rwd {
    flex: 1 1 0;
    min-width: 0;
}
.header_group{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    border-bottom: 1px solid rgb(200 160 99 /40%);
}
.header_group:after {
    content: '';
    width: 40px;
    height: 3px;
    background: #C8A063;
    position: absolute;
    display: block;
    top: calc(100% - 1.5px);
    left: 0;
    transition: all .3s ease;
}
.gold_main_title {
    color: #c0a16b;
    font-size: 32px;
    letter-spacing: 4px;
    margin: 0;
    font-weight: normal;
    font-family: "DM Serif Text", serif;
    line-height: 1.2;
}

.black_slogan_title {
    font-size: 24px;
    font-weight: 400;
    margin: 8px 0 15px;
    line-height: 1.5;
    letter-spacing: 2px;
}

.gold_divider_line {
    width: 60px;
    height: 2px;
    background-color: #c0a16b;
    margin-bottom: 35px;
}

.intro_text {
    font-size: 16px;
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* 品牌區 */
.brand_list_container {
    
}

.brand_label_title {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 400;
    position: relative;
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 16px;
}
.brand_label_title:after {
    content: '';
    width: 100%;
    height: 1px;
    background: rgb(200 160 99 /40%);
    
    display: block;
    top: calc(50% - 0px);
    left: 0;
    transition: all .3s ease;
}
.gold_text_span {
    color: #c0a16b;
    margin-right: -8px;
    font-family: "DM Serif Text", serif;
    flex-shrink: 0;
}

.brand_items_text {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
}

/* 特色卡片區 */
.feature_cards_section {
    margin-top:40px;
}

.feature_flex_box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.info_card_item_rwd {
    flex: 1 1 calc(25% - 15px); /* 四欄分佈，減去 gap 補償 */
    border: 4px solid rgb(200 160 99 /40%);
    padding: 40px;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}

.icon_img_box {
    width: 65px;
    margin-left: auto;
    margin-right: auto;
    /* margin-bottom: 25px; */
}

.card_title_cn {
    font-size: 20px;
    margin: 0 auto;
    letter-spacing: 2px;
    font-weight: 400;
}

.card_title_en {
    font-size: 13px;
    color: #444;
    font-family: "DM Serif Text", serif;
    margin: -8px auto 0;
}

/* --- RWD 手機版設定 --- */
@media (max-width: 768px) {
    .about_wrap_section {

    }

    .about_flex_box {
        gap: 30px;
    }

    .about_img_col_rwd, .about_text_col_rwd {
        flex: 1 1 100%; /* 手機版改為全寬 */
    }

    .gold_main_title {
        font-size: 26px;
    }

    .black_slogan_title {
        font-size: 20px;
    }

    .info_card_item_rwd {
        flex: 1 1 100%; /* 特色卡片改為單欄 */
    }

    .feature_cards_section {
        padding-bottom: 60px;
    }
}
/*------------ service-editor ------------*/
.services_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service_item {
  display: flex;
  align-items: center;
  gap: 32px 24px;
}
.service_icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border: 1px solid #b8975a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  
}
.service_icon img {
  width: auto;
  height: auto;
  display: block;
}
.service_content {
  display: flex;
  flex-direction: column;
  gap: 0px;
  text-align: left;
  max-width: 260px;
}
.service_title {
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  letter-spacing: 2px;
  margin: 0;
}
.service_desc {
  font-size: 13px;
  color: #8B8B8B;
  text-align: justify;
  margin: 0;
}
/* --- RWD 手機版設定 --- */
@media (max-width: 1000px) {
    .services_list{
        flex-direction: row;
        gap:40px;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    .service_item{
        flex-direction: column;
        gap:8px;
    }
    .service_content{
        text-align: center;
    }
}
@media (max-width: 768px) {
  .services_section {
    padding: 50px 20px;
  }

  .services_list {
    gap: 40px;
  }

  .service_item {
    flex-direction: column; /* 手機版改為上下排列 */
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .service_icon {
    width: 90px;
    height: 90px;
  }
}
/*------------ contact-editor ------------*/
.contact-editor{
    text-align: center;
}
.contact-editor .row{
    display: table;
    width: 100%;
    table-layout: fixed;
    border: 0;
}
.contact-editor .col{
    display: table-cell;
    vertical-align: top;
    padding: 0 15px;
    position: relative;
}
.contact-editor .col + .col:before{
    content: "";
    height: 100%;
    width: 1px;
    position: absolute;
    left: 0;
    top: 0;
    background: #4e547b;
}
.contact-info-txt{
    max-width: 200px;
    margin: 0 auto;
}
.contact-info-txt .img-ic{
    display: inline-block;
    margin-bottom: 20px;
}
.contact-info-txt a:hover{
    color: #C8A063;
    text-decoration: underline;
}
.info-icon-box{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    margin-top: 10px;
}
.contact-info-txt .info-icon-box [class^="ic-"] {
    font-size: 20px;
}
/*------------ video-editor ------------*/
.video-editor .pic{
    float: left;
    margin-right: 25px;
}
/*------------ terms-editor ------------*/
.terms-editor{
    font-size: 15px;
    line-height: 2;
}
.terms-editor .title{
    font-size: 17px;
    color: #C8A063;
    margin: 0;
}
.terms-editor p{
    text-indent: 0em;
    margin: 0 0 50px;
}
.terms-editor .row{
    margin: 0 -27px;
}
.terms-editor .col{
    padding: 0 27px;
    width: 50%;
    float: left;
    box-sizing: border-box;
}
/*------------ index-editor ------------*/
/*------------ rwd ------------*/
@media screen and (max-width: 1280px){
    .about-editor .row_2 .txt_box{
        padding:50px 90px 50px 50px;
    }
}
@media screen and (max-width: 960px){
    .contact-editor .col{
        float: none;
        padding: 15px 0;
    }
    .contact-editor .row, .contact-editor .col{
        display: block;
        width: auto;
    }
    .contact-info-txt .img-ic{
        max-width: 100px;
    }
    .contact-editor .col + .col:before {
        height: 1px;
        width: 100%;
    }
}
@media screen and (max-width: 1100px){
    .row_{
        display: block;
    }
    .about-editor .row_1 .col{
        margin-bottom: 20px;
    }
    .about-editor .row_1{
        margin-bottom: 40px;
    }
    .about-editor .row_2{
        margin-top: 20px;
    }
    .about-editor .row_2 .col1:after{
        display: none;
    }
    .about-editor .row_2 .col,.about-editor .row_3 .col{
        margin-bottom: 20px;
    }
    .about-editor .row_2 .txt_box,.about-editor .row_3 .txt_box{
        padding:0px;
        border:none;
        margin-right: 0px;
        margin-left: 0;
        margin-top: 0;
    }
    .about-editor .row_2 .col2{
        text-align: left;
    }
    .index-about-editor{
        padding: 0;
        height: auto;
    }
    .service-editor .row_ .col2,.service-editor .row_ .col1{
        width: 100%;
        margin-bottom: 20px;
    }
    .service-editor .row_ .col2{
        padding: 0;
    }
    .contact-editor i{
        text-indent: 0px;
        line-height: 35px;
    }
}
@media screen and (max-width: 767px){
    .terms-editor .row{
        margin: 0;
    }
    .terms-editor .col{
        padding: 0;
        width: 100%;
    }
}
