@charset "utf-8";

/*------------ index-service-editor ------------*/
.s_layout{
    position: relative;
    box-sizing: border-box;
    display: flex;
    padding: 0;
    margin: 0;
}
.s_layout .s_row1{
    position: relative;
    box-sizing: border-box;
    width: 50%;
    max-width: 570px;
    padding-left: 35px;
}
.s_layout .s_row1 .s_box{
    position: relative;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    height: 70px;
    width: 100%;
}
.s_layout .s_row1 .s_box + .s_box{
    margin-top: 20px;
}
.s_layout .s_row1 .s_box .s_pic{
    position: relative;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: #FFFFFF;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    transition: all .3s ease;
    z-index: 2;
}
.s_layout .s_row1 .s_box .s_pic::before{
    content: '';
    position: absolute;
    display: block;
    background: linear-gradient(to right,  rgba(1,175,166,1) 0%,rgba(1,65,154,1) 100%);
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    transition: all .3s ease;
    z-index: -1;
}
.s_layout .s_row1 .s_box:hover .s_pic::before{
    opacity: 1;
}
.s_layout .s_row1 .s_box .s_pic > .s_pic1{
    display: block;
    transition: all .3s ease;
}
.s_layout .s_row1 .s_box .s_pic > .s_pic2{
    display: none;
    transition: all .3s ease;
}
.s_layout .s_row1 .s_box:hover .s_pic > .s_pic1{
    display: none;
}
.s_layout .s_row1 .s_box:hover .s_pic > .s_pic2{
    display: block;
}
.s_layout .s_row1 .s_box .s_txt{
    position: relative;
    box-sizing: border-box;
    padding-left: 30px;
    margin: 0;
    font-size: 15px;
    font-weight: normal;
    letter-spacing: 0.05em;
    line-height: 1.5;
    color: #666666;
    margin: 0;
}
.s_layout .s_row1 .s_box .s_txt h4{
    position: relative;
    box-sizing: border-box;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.4;
    color: #333333;
    margin: 0 0 5px;
}
.s_layout .s_row1 .s_box:hover .s_txt h4{
    color: #004099;
}


.s_layout .s_row2{
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    width: 50%;
    max-width: 570px;
    margin-left: auto;
    margin-top: -220px;
}
.s_layout .s_row2 .s_col{
    position: relative;
    box-sizing: border-box;
    display: flex;
    margin: 0;
}
.s_layout .s_row2 .s_col .s_txt{
    position: relative;
    box-sizing: border-box;
    width: 50%;
    height: 345px;
    display: flex;
    flex-direction: column;
    color: #FFFFFF;
    text-align: left;
    padding: 110px 40px 30px;
    overflow: hidden;
}
.s_layout .s_row2 .s_col:first-child .s_txt{
    background: #01AFA6;
}
.s_layout .s_row2 .s_col:last-child .s_txt{
    background: #008FD9;
}
.s_layout .s_row2 .s_col:first-child .s_txt::before{
    content: '';
    position: absolute;
    display: block;
    width: 180px;
    height: 180px;
    top: -40px;
    right: -40px;
    background: url(../../../images/layout06/common/index/s_deco1.png) no-repeat;
    opacity: .08;
}
.s_layout .s_row2 .s_col:last-child .s_txt::before{
    content: '';
    position: absolute;
    display: block;
    width: 180px;
    height: 180px;
    top: -40px;
    right: -40px;
    background: url(../../../images/layout06/common/index/s_deco2.png) no-repeat;
    opacity: .08;
}
.s_layout .s_row2 .s_col .s_txt h3{
    position: relative;
    font-size: 24px;
    font-weight: normal;
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin: 0 0 30px;
}
.s_layout .s_row2 .s_col .s_txt h3::before{
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 4px;
    background: #FFFFFF;
    bottom: calc(100% + 15px);
    left: 0;
}
.s_layout .s_row2 .s_col .s_txt p{
    position: relative;
    font-size: 16px;
    color: rgba(255,255,255,.95);
    font-weight: normal;
    letter-spacing: 0.05em;
    line-height: 1.8;
    margin: 0;
}
.s_layout .s_row2 .s_col .s_pic{
    position: relative;
    box-sizing: border-box;
    width: 50%;
    height: auto;
    overflow: hidden;
}
.s_layout .s_row2 .s_col:first-child .s_pic{
    margin-top: auto;
}
.s_layout .s_row2 .s_col:last-child .s_pic{
    margin-bottom: auto;
}
.s_layout .s_row2 .s_col:first-child .s_pic img,
.s_layout .s_row2 .s_col:last-child .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.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    width: 100% !important;
    height:100% !important;
    object-fit: cover;
    min-height: 305px;
}
.s_layout .s_row2 .s_col:first-child:hover .s_pic img,
.s_layout .s_row2 .s_col:last-child: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);
}

@media screen and (max-width: 1280px){
    .s_layout .s_row1{
        width: 48%;
        padding-left: 15px;
    }
    .s_layout .s_row2{
        width: 52%;
    }
    .s_layout .s_row1 .s_box .s_txt{
        padding-left: 20px;
        padding-right: 30px;
    }
    .s_layout .s_row2 .s_col .s_pic{
        min-height: inherit;
    }
}
@media screen and (max-width: 1000px){
    .s_layout{
        flex-direction: column;
    }
    .s_layout .s_row1{
        width: 100%;
        max-width: 570px;
        margin: 0 auto 36px;
        padding: 0;
    }
    .s_layout .s_row2{
        width: 100%;
        max-width: 570px;
        margin: 0 auto;
        padding: 0;
    }
    .s_layout .s_row1 .s_box{
        max-width: 445px;
        margin: 0 auto;
    }
    .s_layout .s_row1 .s_box + .s_box {
        margin-top: 15px;
    }
    .s_layout .s_row1 .s_box .s_txt h4{
        font-size: 17px;
    }
    .s_layout .s_row1 .s_box .s_txt{
        font-size: 14px;
        padding-left: 20px;
        padding-right: 0;
    }
    .s_layout .s_row2 .s_col .s_txt h3::before{
        width: 35px;
        height: 3px;
        bottom: calc(100% + 20px);
    }
    .s_layout .s_row2 .s_col .s_txt{
        padding: 20% 30px 20px;
    }
    .s_layout .s_row2 .s_col .s_txt h3{
        font-size: 20px;
        margin: 0 0 20px;
    }
    .s_layout .s_row2 .s_col .s_txt p{
        font-size: 15px;
    }
    .s_layout .s_row2 .s_col .s_txt{
        height: 310px;
    }
    .s_layout .s_row2 .s_col .s_pic{
        height: 275px;
    }
    .s_layout .s_row2 .s_col:first-child .s_txt::before,
    .s_layout .s_row2 .s_col:last-child .s_txt::before{
        width: 145px;
        height: 145px;
        top: -30px;
        right: -30px;
        background-size: contain;
    }
}

@media screen and (max-width: 480px){
    .s_layout .s_row1 .s_box{
        flex-direction: column;
        height: auto;
        margin: 0 auto 0;
    }
    .s_layout .s_row1 .s_box .s_txt{
        padding: 5px 0 0;
        text-align: center;
    }
    .s_layout .s_row1 .s_box + .s_box {
        margin-top: 20px;
    }
    .s_layout .s_row2 .s_col{
        flex-direction: column;
    }
    .s_layout .s_row2 .s_col .s_txt{
        height: 275px;
    }
    .s_layout .s_row2 .s_col .s_txt{
        width: 100%;
    }
    .s_layout .s_row2 .s_col .s_pic{
        width: 100%;
    }
    .s_layout .s_row2 .s_col .s_txt {
        padding: 25% 30px 20px;
    }
    .s_layout .s_row2 .s_col:last-child{
        flex-direction: column-reverse;
    }
}
/*------------ about-editor ------------*/
.a_layout{
    position: relative;
    box-sizing: border-box;
    display: flex;
    margin: 90px auto 0;
    max-width: 1030px;
}
.a_layout .a_pic{
    position: relative;
    max-width: 495px;
    margin-left: 40px;
}
.a_layout .a_pic::before {
    content: 'ABOUT';
    position: absolute;
    display: block;
    width: fit-content;
    font-family: "Kanit", sans-serif;
    font-size: 180px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.2;
    color: transparent;
    -webkit-text-stroke: 1px #EEEEEE;
    z-index: -1;
    left: -40px;
    bottom: calc(100% - 100px);
}
.a_layout .a_txt{
    position: relative;
    box-sizing: border-box;
    max-width: 495px;
    display: flex;
    flex-direction: column;
    margin-top: 75px;
    background: #01419A;
    padding: 78px 50px 95px;
}
.a_layout .a_txt::before{
    content: '';
    position: absolute;
    display: block;
    background: url(../../../images/layout06/common/about/adot.png) 50% 50%  no-repeat;
    width: 110px;
    height: 94px;
    background-size: contain;
    right: 50px;
    top: 60px;
    opacity: .3;
}
.a_layout .a_txt::after {
    content: 'TWAP';
    position: absolute;
    display: block;
    width: fit-content;
    font-family: "Kanit", sans-serif;
    font-size: 180px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.2;
    color: #F2F2F2;
    z-index: -1;
    left: -50px;
    top: calc(100% - 100px);
}
.a_layout .a_txt > p{
    font-size: 16px;
    font-weight: normal;
    color: #FFFFFF;
    letter-spacing: 0.05em;
    line-height: 2.1;
    margin: 0;
}
.a_layout .a_txt > p span{
    color: #B2D10E;
    margin: 0;
}
.a_layout .a_txt .a_tit{
    position: relative;
    text-align: left;
    margin: 0 0 38px;
}

.a_layout .a_txt .a_tit span{
    color: #FFFFFF;
    font-size: 55px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1.5;
    font-family: "Kanit", sans-serif;
    margin: 0;
}
.a_layout .a_txt .a_tit h2{
    color: #FFFFFF;
    font-size: 28px;
    font-weight: normal;
    letter-spacing: 0.15em;
    line-height: 1.2;
    font-family: "Noto Sans TC", sans-serif;
    margin: 0;
}
.a_layout .a_txt .a_tit::before{
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 7px;
    background: #01AFA6;
    bottom: 15px;
    right: calc(100% + 25px);
}

@media screen and (max-width: 1280px){
    .a_layout {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 60px auto 0;
        box-sizing: border-box;
        padding: 0 15px;
    }
    .a_layout .a_pic{
        width: 100%;
        margin: 0 auto;
    }
    .a_layout .a_txt{
        margin: 0 auto;
        padding: 60px 30px 65px ;
    }
    .a_layout .a_txt::after{
        right: -50px;
        left: inherit;
    }
    .a_layout .a_txt .a_tit{
        text-align: center;
        margin-bottom: 24px;
    }
    .a_layout .a_txt .a_tit::before{
        content: '';
        position: absolute;
        display: block;
        box-sizing: border-box;
        width: 45px;
        height: 5px;
        background: #01AFA6;
        right: 0;
        left: 0;
        bottom: calc(100% + 5px);
        visibility: visible;
        margin: 0 auto;
    }
    .a_layout .a_txt .a_tit span{
        font-size: 45px;
    }
    .a_layout .a_txt .a_tit h2{
        font-size: 24px;
    }
    .a_layout .a_txt > p{
        font-size: 15px;
    }
    .a_layout .a_txt::before{
        width: 88px;
        height: 75px;
        top: 50px;
        right: 40px;
    }
    .a_layout .a_pic::before{
        font-size: 100px;
        margin: 0 auto;
        bottom: calc(100% - 50px);
    }
    .a_layout .a_txt::after{
        font-size: 100px;
        margin: 0 auto;
        top: calc(100% - 50px);
    }
}
@media screen and (max-width: 480px){
    .a_layout{
        margin-top: 30px;
    }
    .a_layout .a_txt {
        margin: 0 auto;
        padding: 60px 15px 65px;
    }
    .a_layout .a_txt .a_tit span {
        font-size: 35px;
    }
    .a_layout .a_txt::before {
        width: 70px;
        height: 60px;
        background-size: contain;
        top: 40px;
        right: 15px;
    }
    .a_layout .a_pic::before {
        font-size: 70px;
        left: -15px;
        bottom: calc(100% - 30px);
    }
    .a_layout .a_txt::after{
        font-size: 70px;
        right: -15px;
        top: calc(100% - 30px);
    }

}
/*------------ contact-editor ------------*/
.contact-editor .col{
    float: left;
}
.contact-editor .col + .col{
    margin: 0 0 0 25px;
}
.contact-editor i{
    width: 30px;
    height: 30px;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    line-height: 30px;
    position: relative;
    margin: 0 20px 0 0;
    z-index: 0;
}
.contact-editor i:after{
    content: '';
    background: #01419A;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    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;
}
.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;
    top: 2px;
}
.contact-editor .col a,
.contact-editor .col span{
    display: inline-block;
    width: calc(100% - 50px);
    vertical-align: middle;
}
/*------------ 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: #01419A;
    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){

}
@media screen and (max-width: 960px){
    .contact-editor .col + .col{
        margin: 25px 0 0 0;
    }
    .contact-editor .col{
        float: none;
    }
}
@media screen and (max-width: 1100px){
    .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%;
    }
}
