@charset "utf-8";
/*------------ about-editor ------------*/
.ab_t {
    font-size: 22px;
    color: #B81C25;
    letter-spacing: 0.2em;
    line-height: 1.2;
    margin: 0 auto 16px;
}
.ab_txt {
    margin: 0;
    line-height: 1.8;
    color: #666;
}
.about_wrapper {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 80px 20px; */
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    overflow: hidden;
}
/* --- 第一區塊：Intro --- */
.intro_section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
}
.image_container {
    flex: 1;
    position: relative;
    flex: 0 1 auto;
}
.intro_image {
    width: 100%;
    height: auto;
    display: block;
}
.text_content_box {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.title_box{
    display:flex;
    flex-direction: column;
    align-items: flex-start;
    letter-spacing: 8px;
    text-indent: 4px;
    font-size: 22px;
    font-family: "Carlito", sans-serif;
}
.title_box span{
    position: relative;
    letter-spacing: 1px;
    text-indent: 0px;
    font-size: 40px;
    line-height: 1.2;
    z-index: 1;
}
.title_box span:before{
    content:'';
    display:block;
    width: 80px;
    height:1px;
    background: #bbbbbb;
    position:absolute;
    top:50%;
    right:100%;
    margin-right: 24px;
}
.red_sub_title {
    color: #cc0000; /* 紅色標題 */
    font-size: 28px;
    margin: 0;
    letter-spacing: 6px;
}
.main_paragraph {
    /* color: #cccccc; */ /* 灰白色內文 */
    font-size: 16px;
    margin: 0;
    text-align: justify;
    line-height: 2;
}
/* --- 第二區塊：World --- */
.world_section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 80px;
}
.world_info_box {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1 1 0;
    min-width: 0;
    position: relative;
    z-index: 10;
}
.large_red_title {
    color: #111;
    font-size: 60px;
    margin: 0;
    font-weight: bold;
    line-height:1.2;
}
.large_red_title span{
    color:#b81c25;
    display: block;
}
.paragraph_group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.process_image_group {
    flex: 0 1 auto;
    position: relative;
    box-sizing: border-box;
    padding: 0 40px 0 0;
}
.image_large {
    width: 100%;
    display: block;
}
.floating_image_box {
    position: absolute;
    bottom: -40px;
    right: 0px;
}
.image_small {
    width: 100%;
    display: block;
}
/* --- 背景裝飾文字 --- */
.bg_footer_text {
    width: 100%;
    text-align: left;
    font-size: 126px;
    color: transparent;
    -webkit-text-stroke: 1px #eee;
    margin-top: -80px;
    text-transform: uppercase;
    font-family: "Limelight", sans-serif;
    line-height: 0.8;
    position: relative;
    z-index: 0;
}
/* --- RWD 響應式設定 --- */
@media (max-width: 1200px) {
    .about_wrapper {
        gap: 60px;
    }
    .intro_section, 
    .world_section {
        flex-direction: column;
        gap: 40px;
    }
    .image_container {
        padding-left: 0;
    }
    .vertical_label {
        position: relative;
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 50px;
        margin-bottom: 10px;
    }
    .large_red_title {
        font-size: 45px;
        display: flex;
        gap: 4px;
        flex-wrap: wrap;
    }
    .title_box{
        font-size:16px;
        letter-spacing:4px;
    }
    .title_box span{
        font-size:26px;
    }
    .red_sub_title{
        font-size:20px;
    }
    .main_paragraph{
        font-size:15px;
    }
    .bg_footer_text{
        font-size:90px;
        margin-top:-6px;
    }
}
/*------------ service-editor ------------*/
.service_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: center;
    width: 120%;
    margin: 210px -102px 0;
}
.service_item {
    flex: 1 1 calc(25% - 56px);
    box-sizing: border-box;
    padding: 0;
    text-align: center;
    /* background: #fff; */
    position: relative;
    /* max-height: 180px; */
    transition: all .3s;
}
.service_item:last-child:after{
    content:'';
    display:block;
    width:1000%;
    height:1px;
    background:#8E9090;
    position:absolute;
    top: -33px;
    left:100%;
}
.service_item .icon {
    text-indent: inherit;
    white-space: nowrap;
    overflow: hidden;
    text-align: left;
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 48px;
}
.service_item .num {
    font-size: 40px;
    font-weight: bold;
    color: #8E9090;
    width: 100%;
    text-align: center;
    position: absolute;
    margin: 0 auto;
    bottom: 100%;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-family: "Carlito", sans-serif;
    z-index: 1;
    transition: all .3s;
}
.service_item .num:before{
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #8E9090;
    margin-left: -56px;
}
.service_item .num:after{
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #8E9090;
    margin-right: -56px;
}
.service_item:last-child .num:after{
    
}
.service_item h3 {
    font-size: 22px;
    letter-spacing: 0;
    color: #000;
    margin: -8px 0 0;
    font-family: "Carlito", sans-serif;
    transition: all .3s;
}
.service_item .zh {
    font-size: 26px;
    letter-spacing: 0.1em;
    color: #444;
    margin: 8px 0 0;
    transition: all .3s;
}
.service_item .desc {
    font-size: 16px;
    /* letter-spacing: 0.1em; */
    color: #444;
    transition: all .3s;
}
/* RWD：平板 */
@media (max-width: 1440px) {
    .service_item:last-child:after{
        top: -34px;
    }
}
@media (max-width: 1340px) {
    .service_layout {
        flex-direction: column;
    }

    .s_box {
        margin: 40px auto 0;
    }
}
@media (max-width: 1280px) {
    .service_item:last-child:after{
        display: none;
    }
}
@media (max-width: 1000px) {
    .service_grid {
        padding: 0;
        width: auto;
        gap: 24px;
        margin: 40px auto 0;
        overflow:hidden;
    }
    .service_item {
        flex: 1 1 calc(50% - 40px);
    }
    .service_item .num{
        position:relative;
        bottom: inherit;
    }
    .service_item .num:before{
        margin-left: -40px;
    }
    .service_item .num:after{
        margin-right: -40px;
    }
    .service_item .zh{
        font-size: 20px;
    }
}
/* RWD：手機 */
@media (max-width: 600px) {
    .service_item {
        flex: 1 1 100%;
    }
}
/*------------index service-editor ------------*/
.s_layout {
  display: flex;
  gap: 32px;
  margin: 0;
  justify-content: center;
}
.s_layout .s_item {
  position: relative;
  overflow: hidden;
  transition:all .3s;
    
}
.s_layout .s_item:hover {
  
}
.s_layout .s_item .pic{
    /*filter: grayscale(100%);*/
    transition:all .3s;
}
.s_layout .s_item:hover .pic{
/*  filter: grayscale(0%);*/
}
.s_layout .s_item .txt {
    font-size: 26px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #000;
    z-index: 2;
    letter-spacing: 1.5px;
    line-height: 1.6;
    box-sizing:border-box;
    padding: 24px 32px;
    background:#fff;
    border:1px solid #dcdcdc;
    border-width:0 1px 1px;
    box-shadow:0 0 8px rgb(0 0 0/20%);
    position:relative;
    transition:all .3s;
}
.s_layout .s_item:hover .txt{
    color: rgb(255 255 255/100%);
    background:rgb(184 28 37/80%);
}
.s_layout .s_item .txt:after{
    content:'';
    display:block;
    width:132px;
    height:3px;
    margin:0 auto;
    background:#B81C25;
    position:absolute;
    bottom:-1px;
    left:0;
    right:0;
    z-index:-1;
    transition:all .3s;
}
.s_layout .s_item:hover .txt:after{
    width:100%;
}
.s_layout .s_item .txt span {
  font-size: 24px;
  letter-spacing: 1px;
  line-height: 1.2;
  font-family: "Carlito", sans-serif;
  margin-top: -4px;
}
@media screen and (max-width: 1600px) {
  .s_layout {
    max-width: 1400px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1380px) {
  .s_layout {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap:20px;
  }
}
@media screen and (max-width: 1000px) {
  .s_layout {
    max-width: 800px;
  }
  .s_layout .s_item {
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .s_layout {
    max-width: unset;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }
}
/*------------ contact-editor ------------*/
.contact-editor .row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}
.contact-editor .col {
    flex: 0 1 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
}
.contact-editor .col.add {
    flex: 1 1 0;
    min-width: 250px;
}
.contact-editor i{
    width: 30px;
    height: 30px;
    background: #e61035;
    border-radius: 10px;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    line-height: 30px;
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content:center;
    flex-shrink:0;
    gap: 16px;
    transform: rotate(45deg); 
}
.contact-editor i:before{
    display: inline-block;
    font-family: 'icon-font' !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;
    transform: rotate(-45deg); 
}
.contact-editor .tel i:before{
    content: "\ff001";
}
.contact-editor .fax i:before{
    content: "\ff002";
}
.contact-editor .mail i:before{
    content: "\ff003";
}
.contact-editor .add i:before{
    content: "\ff004";
    font-size: 18px;
    position: relative;
}
/*------------ 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: #B81C25;
    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: 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: 30px;
    }
}
@media screen and (max-width: 767px){
    .terms-editor .row{
        margin: 0;
    }
    .terms-editor .col{
        padding: 0;
        width: 100%;
    }
}
