@charset "utf-8";
/*------------ about-editor ------------*/
.about_banner {
    position: relative;
    width: 100%;
    /* height: 420px; */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.about_banner_image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about_overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.35);
}
.about_banner_content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1330px;
    padding: 0 40px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;

    text-align: center;
}
.about_section {
    width: 100%;
    overflow: hidden;
    max-width: 1002px;
    margin: 0 auto;
}
.about_overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.35);
    display:none;
}
.about_banner_content {
    position: absolute;
    z-index: 2;
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}
.about_subtitle {
    font-size: 20px;
    color: #ffffff;
    letter-spacing: 4px;
    font-weight: 500;
}
.about_title {
    font-size: 50px;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 6px;
    line-height: 1.2;
    position: relative;
}
.about_title:after{
    content:'';
    display:block;
    width:50px;
    height:1px;
    background:#fff;
    margin:16px auto;
}
.about_content {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: -60px;
    margin-bottom: 40px;
    position: relative;
    z-index: 3;
}
.about_text {
    width: 100%;
    max-width: 770px;
    background-color: #ffffff;
    padding: 72px 116px;
    box-sizing: border-box;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 1000px) {
    .about_banner {

    }
    .about_title {
        font-size: 42px;
    }
    .about_content {
        margin-top: -40px;
    }
    .about_text {
        padding: 50px 40px;
        font-size: 16px;
        line-height: 2;
    }
}
@media screen and (max-width: 767px) {
    .about_banner_content {
        padding: 0 24px;
        gap: 10px;
    }
    .about_subtitle {
        font-size: 14px;
        letter-spacing: 2px;
    }
    .about_title {
        font-size: 30px;
        letter-spacing: 2px;
    }
    .about_content {
        margin-top: -30px;
        padding: 0 16px 60px;
    }
    .about_text {
        padding: 36px 24px;
        font-size: 15px;
        line-height: 1.9;
    }
}
@media screen and (max-width: 484px) {
    .about_text {
        text-align: left;
    }
}
/*------------ service-editor ------------*/
.service_grid *,
.service_grid{
    position: relative;
    box-sizing: border-box;
}
.service_grid{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
    width: 100%;
}
.service_item{
    top: 0;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    background: rgba(255, 255, 255, 0.5);
    padding: 50px;
    border-radius: 40px;
}
.service_item a.cover{
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 30;
}
.service_item:hover{
    top: -15px;
}
.service_item .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    border-radius: 100%;
    background: #fff;
    outline: 9px solid rgb(238 238 238 / 50%);
    overflow: hidden;

    transition: all .3s ease;
}
.service_item:hover .icon{
    background: #B81A20;
}
.service_item .icon img:nth-child(1) {
    opacity: 1;
    transition: all .3s;
    position: relative;
}
.service_item:hover img:nth-child(1){
    opacity: 0;
}
.service_item .icon img:nth-child(2){
    transition: all .3s;
    position: absolute;
    z-index: 10;
    opacity: 0;
}
.service_item:hover img:nth-child(2){
    opacity: 1;
}
.service_item .icon img{
    width:auto;
    height:auto;
}
.service_item .name{
    color: #333;
    font-size: 20px;
    font-weight: 500;
    margin: 20px auto 0;
    transition: all .3s;
}
.service_item .desc{
    color: #aaa;
    font-size: 14px;
    margin: 0 auto 0;
    transition: all .3s;
}

@media (max-width: 1280px) {
    .service_grid {
        gap: 20px;
    }
}
@media (max-width: 767px) {
    .service_grid{
        flex-direction: column;
    }
    .service_item {
        max-width: unset;
        width: 100%;
    }
}
/* @media (max-width: 640px) {
    .service_item{
        flex: 1 1 100%;
    }
} */
/*------------ /service-editor ------------*/
/*------------ 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;
    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: #B81B21;
    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%;
    }
}