@charset "utf-8";
/*------------ index-service-editor ------------*/
.s_layout{
    position: relative;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}
.s_layout .s_row1,
.s_layout .s_row2{
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.s_layout .s_row1{
    width: 100%;
    max-width: 808px;
}
.s_layout .s_row2{
    width: 100%;
    max-width: 462px;
}
.s_layout .s_row1 .s_item1,
.s_layout .s_row1 .s_item2{
    position: relative;
    box-sizing: border-box;
    width: 100%;
    max-width: 807px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.s_layout .s_row1 .s_item1 .s_col+.s_col{
    margin-left: 2.6%;
}
.s_layout .s_row1 .s_item1 + .s_item2{
    margin-top: 2.5%;
}
.s_layout .s_row1 + .s_row2{
    margin-left: 1.58%;
}
.s_layout .s_col{
    position: relative;
    box-sizing: border-box;
}
.s_layout .s_col .s_pic{
    position: relative;
    box-sizing: border-box;
    display: block;
    overflow: hidden;
    z-index: 0;
}
.s_layout .s_col .s_pic img {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}
.s_layout .s_col:hover .s_pic img {
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.s_layout .s_col .s_pic::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: linear-gradient(to bottom,  rgba(255,255,255,0) 25%,rgba(0,0,0,1) 100%);
    opacity: .8;
    z-index: 1;
    transition: all .3s ease;
}
.s_layout .s_col:hover .s_pic::before{
    background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(0,0,0,1) 100%);

}
.s_layout .s_col .s_txt{
    position: absolute;
    display: flex;
    flex-direction: column;
    color: rgba(255,255,255,.9);
    line-height: 1.6;
    left: 25px;
    bottom: 28px;
    z-index: 2;
}
.s_layout .s_col .s_txt .s_tit{
    position: relative;
    line-height: 1.6;
    color: #fff;
    text-shadow: 5px 5px 20px rgba(0, 0, 0, 1) ;
    margin: 0 0 8px;
    transition: all .3s ease;
    -webkit-transform: translate(0, 58px);
    transform: translate(0, 58px);
}
.s_layout .s_col:hover .s_txt .s_tit{
    -webkit-transform: translate(0, 0px);
    transform: translate(0, 0px);
}
.s_layout .s_col .s_txt .s_tit::before{
    content: '';
    position: absolute;
    display: block;
    width: 4px;
    height: 50px;
    background: rgba(255,255,255,.5);
    left: -25px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    transition: all .3s ease;
}
.s_layout .s_col .s_txt .s_tit h4{
    position: relative;
    font-size: 25px;
    font-weight: normal;
    line-height: 1.3;
    letter-spacing: 0.05em;
    margin: 0;
}
.s_layout .s_col .s_txt .s_tit span{
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 0.05em;
    font-family: "Barlow", sans-serif;
}
.s_layout .s_col .s_txt p{
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 0.05em;
    line-height: 1.6;
    padding: 0;
    margin: 0;
    transition: all .3s ease;
    -webkit-transform: translate(0, 58px);
    transform: translate(0, 58px);
    opacity: 0;
}
.s_layout .s_col:hover .s_txt  p{
    -webkit-transform: translate(0, 0px);
    transform: translate(0, 0px);
    opacity: 1;
}

.s_layout .s_col .s_pic .vertical{
    display: block;
}
.s_layout .s_col .s_pic .horizontal{
    display: none;
}
.s_layout .s_col .s_cover {
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 30;
    font-size: 0;
    color: transparent;
}
@media screen and (max-width: 1320px){
    .s_layout{
        flex-direction: column;
    }
    .s_layout .s_row1 + .s_row2 {
        margin-top: 2.1%;
        margin-left: inherit;
    }
    .s_layout .s_row2{
        max-width: 807px;
    }
    .s_layout .s_col .s_pic .vertical{
        display: none;
    }
    .s_layout .s_col .s_pic .horizontal{
        display: block;
    }
}
@media screen and (max-width: 1000px){
    .s_layout .s_col .s_txt .s_tit h4{
        font-size: 22px;
    }
    .s_layout .s_col .s_txt .s_tit span {
        font-size: 18px;
    }
    .s_layout .s_col .s_txt p {
        font-size: 13px;
    }
}
@media screen and (max-width: 600px){
    .s_layout .s_row1 .s_item1{
        flex-direction: column;
    }
    .s_layout .s_row1 .s_item1 .s_col+.s_col {
        margin-left: 0;
        margin-top: 2.6%;
    }
    .s_layout .s_col .s_pic{
        width: 100%;
        max-width: 393px;
        height: 176px;
    }
    .s_layout .s_row1 + .s_row2{
        margin-top: 2.6%;
    }
    .s_layout .s_col .s_txt .s_tit{
        -webkit-transform: translate(0, 74px);
        transform: translate(0, 74px);
    }
    .s_layout .s_col .s_txt p{
        -webkit-transform: translate(0, 74px);
        transform: translate(0, 74px);
    }
    .s_layout .s_col:hover .s_txt .s_tit{
        -webkit-transform: translate(0, 6px);
        transform: translate(0, 6px);
    }
    .s_layout .s_col:hover .s_txt  p{
        -webkit-transform: translate(0, 6px);
        transform: translate(0, 6px);
    }
}
@media screen and (max-width: 350px){
    .s_layout .s_col .s_pic {
        height: 150px;
    }
        .s_layout .s_col .s_txt .s_tit{
        -webkit-transform: translate(0, 84px);
        transform: translate(0, 84px);
    }
    .s_layout .s_col .s_txt p{
        -webkit-transform: translate(0, 84px);
        transform: translate(0, 84px);
    }
    .s_layout .s_col:hover .s_txt .s_tit{
        -webkit-transform: translate(0, 16px);
        transform: translate(0, 16px);
    }
    .s_layout .s_col:hover .s_txt  p{
        -webkit-transform: translate(0, 16px);
        transform: translate(0, 16px);
    }
}
/*------------ /index-service-editor ------------*/
/*------------ about-editor ------------*/
.a_layout{
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    padding: 0 15px;
    margin: 76px auto 0;
}
.a_layout .a_tit{
    color: #333333;
    text-align: center;
    line-height: 1.2;
    position: relative;
    text-align: left;
    margin: 0 0 32px;
}
.a_layout .a_tit span{
    display: block;
    font-size: 65px;
    font-weight: bold;
    font-family: "Barlow", sans-serif;
    letter-spacing: 0;
    line-height: 1.25;
    color: #333333;
    margin: 0;
}
.a_layout .a_tit span > i{
    color: #584B9A;
    font-style: normal;
}
.a_layout .a_tit h2{
    font-family: "Noto Sans TC", sans-serif;
    font-size: 30px;
    color: #333333;
    font-weight: normal;
    letter-spacing: 0.1em;
    line-height: 1.2;
    display: block;
    margin: 0 0px;
}
.a_layout .a_tit span{
    line-height: 0.98;
    margin-bottom: 18px;
}

.a_layout .a_row1{
    position: relative;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    margin-bottom: 130px;
}
.a_layout .a_row1 .a_col{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 50%;
}
.a_layout .a_row1 .a_col.txt{
    position: relative;
    box-sizing: border-box;
    max-width: 432px;
}
.a_layout .a_row1 .a_col.txt p{
    font-size: 16px;
    color: #525252;
    font-weight: normal;
    letter-spacing: 0.05em;
    line-height: 1.75;
    margin: 0;
}
.a_layout .a_row1 .a_col.txt  p > span{
    background: linear-gradient(120deg, #D2E7F9 0%, #E9DBF7 100%);
    padding: 0.15rem 0.0rem;
    border-radius: 6px;
    font-weight: normal;
    display: inline;
    word-break: break-all;
    overflow-wrap: break-word;
    line-height: 1.75;
    white-space: normal;
}
.a_layout .a_row1 .a_col.pic{
    position: relative;
    max-width: 497px;
    justify-content: flex-end;
}
.a_layout .a_row1 .a_col.pic h4{
    position: relative;
    font-size: 20px;
    font-weight: normal;
    color: #19407A;
    letter-spacing: 0.05em;
    line-height: 1.6;
    padding-left: 18px;
    margin: 32px 0 0px;
    width: fit-content;
    text-align: left;
}
.a_layout .a_row1 .a_col.pic h4::before{
    content: '';
    position: absolute;
    display: block;
    width: 3px;
    height: 52px;
    background: #19407A;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
}

.a_layout .a_row2 {
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}
.a_layout .a_row2 .a_col{
    position: relative;
    box-sizing: border-box;
}
.a_layout .a_row2 .a_col.txt{
    position: relative;
    box-sizing: border-box;
    display: block;
    background: #fff;
    max-width: 630px;
    margin: 0 auto;
    padding: 0 85px 67px;
    z-index: 2;
}
.a_layout .a_row2 .a_col.txt .a_tit{
    position: relative;
    width: fit-content;
    text-align: center;
    margin: -30px auto 32px;
}
.a_layout .a_row2 .a_col.pic{
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin-top: -138px;
    z-index: 1;
}
.a_layout .a_row2 .a_col.txt p {
    font-size: 16px;
    color: #525252;
    font-weight: normal;
    letter-spacing: 0.05em;
    line-height: 1.75;
    margin: 0;
}

@media screen and (max-width: 1280px){
    .a_layout{
        margin: 50px auto 0;
    }
    .a_layout .a_row1{
        flex-direction: column;
        justify-content:inherit;
        align-items: center;
        margin-bottom: 128px;
    }
    .a_layout .a_row1 .a_col{
        width: 100%;
    }
    .a_layout .a_row1 .a_col.txt{
        max-width: inherit;
        justify-content:inherit;
        margin-bottom: 40px;
    }
    .a_layout .a_row1 .a_col.pic{
        max-width: inherit;
        justify-content:inherit;
    }
    .a_layout .a_row2 .a_col.txt{
        max-width: inherit;
        padding: 0 55px 45px;
    }
    .a_layout .a_row2 .a_col.pic{
        margin-top: 0;
    }
}
@media screen and (max-width: 1000px){
    .a_layout {
        margin: 30px auto 0;
    }
    .a_layout .a_tit{
        margin: 0 auto 30px;
        text-align: center;
    }
    .a_layout .a_tit span{
        font-size: 45px;
    }
    .a_layout .a_tit h2{
        font-size: 24px;
    }
    .a_layout .a_tit span{
        margin-bottom: 18px;
    }
    .a_layout .a_row1{
        margin-bottom: 85px;
    }
    .a_layout .a_row1 .a_col.txt{
        margin-bottom: 30px;
    }
    .a_layout .a_row1 .a_col.txt p,
    .a_layout .a_row2 .a_col.txt p{
        font-size: 15px;
    }
    .a_layout .a_row1 .a_col.pic h4 {
        font-size: 18px;
        padding-left: 0px;
        padding-bottom: 15px;
        margin: 30px auto 0px;
    }
    .a_layout .a_row1 .a_col.pic h4::before{
        width: 52px;
        height: 3px;
        background: #19407A;
        top: inherit;
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0 auto;
    }
    .a_layout .a_row2 .a_col.txt {
        max-width: inherit;
        padding: 0 35px 30px;
    }
    .a_layout .a_row2 .a_col.txt .a_tit{
        margin: -20px auto 30px;
    }
}

/*------------ /about-editor ------------*/




/*footer*/
.ic_phone{
    font-size: 20px;
    color: #444444;
    margin: -9px 15px 0 0;
    display: inline-block;
    vertical-align: middle;
}
.ic_phone:before{
    content: "\e1050";
    font-family: 'icon-font2' !important;
}
.ic_mail{
    display: inline-block;
    vertical-align: text-bottom;
    background: url(../../../images/layout04/common/siteinfo_ic.png) no-repeat;
    width: 20px;
    height: 20px;
    margin-right: 14px;
    background-position: 0 -20px;
}
.ic_fax{
    display: inline-block;
    vertical-align: text-bottom;
    background: url(../../../images/layout04/common/siteinfo_ic.png) no-repeat;
    width: 20px;
    height: 20px;
    margin-right: 14px;
    background-position: 0 -40px;
}
.ic_add{
    display: inline-block;
    vertical-align: text-bottom;
    background: url(../../../images/layout04/common/siteinfo_ic.png) no-repeat;
    width: 20px;
    height: 20px;
    margin-right: 14px;
    background-position: 0 -60px;
}
.site-info .ic-phone{
    font-size: 20px;
    width: 20px;
    color: #555555;
    margin-right: 5px;
    position: relative;
    top: 1px;
    display: inline-block;
}
.site-info .ic-envelope{
    font-size: 18px;
    width: 20px;
    color: #555555;
    margin-right: 5px;
    position: relative;
    top: 2px;
    display: inline-block;
}
.site-info .ic-fax{
    font-size: 18px;
    width: 20px;
    color: #555555;
    margin-right: 5px;
    position: relative;
    top: 2px;
    display: inline-block;
}
.site-info .ic-map-marker{
    font-size: 21px;
    width: 20px;
    color: #555555;
    margin-right: 5px;
    text-align: center;
    position: relative;
    top: 3px;
    display: inline-block;
}
/*------------ contact-editor ------------*/
.contact-map iframe{
    border: 10px solid#fff;
    width: 100%;
    box-sizing: border-box;
    height: 300px;
    margin: 0px 0 20px;
}
.contact-editor{
    text-align: center;
    margin: 5px 0;
}
.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: #d5d5d5;
}
.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: #B20000;
    text-decoration: underline;
}
.info-icon-box{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    margin-top: 10px;
    background: #584B9A;
    color: #fff;
}
.contact-info-txt .info-icon-box [class^="ic-"] {
    font-size: 18px;
}
/*------------ video-editor ------------*/
.video-editor .pic{
    float: left;
    margin-right: 25px;
}
/*------------ terms-editor ------------*/
.terms-editor{
    font-size: 15px;
    line-height: 2;
    /*max-width: 1045px;*/
    margin: 30px auto 0;
}
.terms-editor .title:before{
    content: '/';
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    margin-top: -5px;
}
.terms-editor .title{
    color: #584B9A;
    font-size: 16px;
    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;
}


.editor-row {
    margin-bottom: 5px;
    float: none;
    margin-top: 50px;
}
/*------------ index-editor ------------*/
/*------------ rwd ------------*/
@media screen and (max-width: 1280px){

}
@media screen and (max-width: 1000px){
    .contact-editor .row,
    .contact-editor .col{
        display: block;
        width: auto;
    }
    .contact-editor .col{
        padding: 15px 0;
    }
    .contact-map iframe{
        border: 5px solid#fff;
        height: 200px;
        margin: 0px;
    }
    .contact-editor .col + .col:before {
        height: 1px;
        width: 100%;
    }
}
@media screen and (max-width: 767px){
    .terms-editor .row{
        margin: 0;
    }
    .terms-editor .col{
        padding: 0;
        width: 100%;
    }
    .contact-map{
        height: 200px;
    }
}
