.sec1{
    padding: 10.4% 0;
}
.sec1 .inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}
.sec1 .text-box,.sec1 .img-box{
    opacity: 0;
    transition: transform 1s,opacity 1s;
}
.sec1 .text-box{
    transform: translate(-25vw,0);
}
.sec1 .img-box{
    transform: translate(25vw,0);
}
.sec1 .text-box.actived,.sec1 .img-box.actived{
    opacity: 1;
    transform: translate(0,0);
}
.sec1 .text-box{
    width: 48.9%;
}
.sec1 .text-box h5{
    font-size: 1.125em;
    font-weight: bold;
    color: var(--theme-color);
    margin-bottom: 1.56em;
}
.sec1 .text-box h5::before{
    display: inline-block;
    vertical-align: middle;
    content: '';
    width: 2.22em;
    height: 1px;
    margin-right: 0.78em;
    background-color: var(--theme-color);
}
.sec1 .text-box h5 b{
    display: inline-block;
    vertical-align: middle;
}
.sec1 .text-box p{
    color: #333;
    line-height: 1.78;
    margin-bottom: 0.56em;
}
.sec1 .text-box p:last-child{
    margin-bottom: 0;
}
.sec1 .img-box{
    width: 48.28%;
    position: relative;
}
.sec1 .img-box::before{
    content: "";
    display: block;
    background-repeat: no-repeat;
    background-image: url(../images/about_innovation_imgbg.png);
    background-size: contain;
    opacity: 0.5;
    animation: zoom-in-zoom-out 4s ease-out infinite;
    position: absolute;
    width: 5.375em;
    height: 9.0625em;
    z-index: -1;
    right: -2.375em;
    bottom: -3.25em;
}
@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(.7, .7);
    }
    100% {
        transform: scale(1, 1);
    }
}
.sec1 .img-box > .bg{
    pointer-events: none;
    position: relative;
    z-index: 1;
}
.sec1 .img-box li{
    position: absolute;
    overflow: hidden;
    cursor: pointer;
    border-radius: 0.625em;
    width: 47.875%;
}
.sec1 .img-box li img{
    transition: transform 0.5s;
}
.sec1 .img-box .img1{
    left: 0;
    top: 0;
    margin-top: 17%;
}
.sec1 .img-box .img2{
    right: 0;
    top: 0;
}
.sec1 .img-box .img3{
    right: 0;
    bottom: 0;
}




.sec2{
    position: relative;
    padding: 6.77% 0 7.8125%;
}
.sec2 .img-box{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-direction: row;
}
.sec2 .img-box .left{
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/about_profile_sec2_img1.jpg);
    width: 56.5%;
}
.sec2 .img-box .right{
    position: relative;
    width: 43.5%;
    background-image: linear-gradient( to right, rgb(176,41,37) 0%, rgb(252,51,41) 100%);
}
.sec2 .img-box .right:before{
    content: '';
    width: 30em;
    height: 28.5em;
    position: absolute;
    top: 0;
    right: 0;
    background: url(../images/index_sec2_shape2_topright.png) no-repeat center center;
    opacity: .2;
    animation: move-right-bottom 4s ease-out infinite;
}
@keyframes move-right-bottom {
    0% {
        transform: translate3d(0);
    }
    50% {
        transform: translate3d(3.125em, -3.125em, 0);
    }
    100% {
        transform: translate3d(0);
    }
}
.sec2 .img-box .right:after{
    content: '';
    width: 5.375em;
    height: 9em;
    position: absolute;
    right: 0;
    bottom: 0;
    background: url(../images/index_sec2_shape1.png) no-repeat center center;
    animation: zoom-in-zoom-out 4s ease-out infinite;
    opacity: 0.5;
    margin-right: 24.16%;
    margin-bottom: 33.13%;
}
.sec2 .inner{
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: row;
    position: relative;
    z-index: 1;
}
.sec2 .text-box{
    background-color: #fff;
    padding: 8% 4% 9%;
    width: 50%;
    margin-right: 5%;
}
.sec2 li{
    margin-bottom: 2.875em;
    opacity: 0;
    transition: transform 1s,opacity 1s;
    transform: translate(0,20vh);
}
.sec2 ul.actived li{
    opacity: 1;
    transform: translate(0,0);
}
.sec2 li:last-child{
    margin-bottom: 0;
}
.sec2 h5{
    font-size: 1.5em;
    color: var(--theme-color);
    font-weight: bold;
    padding-left: 1.66em;
    position: relative;
    margin-bottom: 0.42em;
}
.sec2 h5 .icon{
    position: absolute;
    left: 0;
    top: 50%;
    width: 1em;
    transform: translateY(-50%);
}
.sec2 p{
    font-size: 1.125em;
    color: #333;
    line-height: 2.22;
    padding-left: 2.22em;
}




.sec3{
    padding: 8.85% 0 10.4%;
}
.sec3 .title{
    margin-bottom: 7.13%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    opacity: 0;
    transition: transform 1s,opacity 1s;
    transform: translate(0,20vh);
}
.sec3 .title.actived{
    opacity: 1;
    transform: translate(0,0);
}
.sec3 h3{
    font-size: 2.625em;
    color: #333;
    font-weight: bold;
}
.sec3 .swiper-prev,.sec3 .swiper-next{
    background-color: #fcf6f1;
    border-radius: 50%;
    width: 4em;
    height: 4em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    cursor: pointer;
    color: #1c1c1c;
    font-family:revicons;
}
.sec3 .swiper-prev{
    margin-right: 0.625em;
}
.sec3 .swiper-prev::before,.sec3 .swiper-next::before{
    font-size: 1.25em;
}
.sec3 .swiper-prev::before{
    content: "\e817";
}
.sec3 .swiper-next:before{
    content: "\e818";
}
.sec3 .swiper{
    overflow: visible;
    opacity: 0;
    transition: transform 1s 0.5s,opacity 1s 0.5s;
    transform: translate(50vw,0);
}
.sec3 .swiper.actived{
    opacity: 1;
    transform: translate(0,0);
}
.sec3 .swiper-slide{
    width: 25.5em;
    border-bottom: 0.4375em solid var(--theme-color);
    height: auto;
    padding: 2.5em 2.5em 3em;
    color: #333;
}
.sec3 .swiper-slide::before{
    border: 2px solid #ebebeb;
    border-bottom: 0 none;
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
.sec3 h5{
    font-size: 2.625em;
    font-weight: bold;
    margin-bottom: 0.66em;
}
.sec3 p{
    line-height: 1.75;
    margin-bottom: 0.625em;
    padding-left: 0.875em;
    position: relative;
}
.sec3 p:last-child{
    margin-bottom: 0;
}
.sec3 p::before{
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 0.25em;
    height: 0.25em;
    border-radius: 50%;
    background-color: #333;
    position: absolute;
    left: 0;
    top: 0.75em;
}
.sec3 .swiper .mousehover{
    position: absolute;
    top: 0;
    width: 100vw;
    height: 100%;
    z-index: 2;
}
.sec3 .swiper .mousehover.left{
    right: 50%;
}
.sec3 .swiper .mousehover.right{
    left: 50%;
}




.sec4{
    padding: 7.5% 0;
    position: relative;
    background-color: #f4f4f4;
}
.sec4 h3{
    font-size: 2.625em;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 7.3%;
    opacity: 0;
    transition: transform 1s,opacity 1s;
    transform: translate(0,20vh);
}
.sec4 h3.actived{
    opacity: 1;
    transform: translate(0,0);
}
.sec4 ul{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-direction: row;
}
.sec4 li{
    width: 48%;
    background-color: #fff;
    border-bottom: 3px solid var(--theme-color);
    padding: 4.375em 4.875em 4em;
    height: auto;
    background-repeat: no-repeat;
    background-size: 28.23% auto;
    background-position: right 1.375em bottom -0.75em;
    opacity: 0;
    transition: transform 1s 0.5s,opacity 1s 0.5s;
    transform: translate(0,20vh);
}
.sec4 li.actived{
    opacity: 1;
    transform: translate(0,0);
}
.sec4 li:nth-child(1){
    background-image: url(../images/about_profile_sec4_icon1.png);
}
.sec4 li:nth-child(2){
    background-image: url(../images/about_profile_sec4_icon2.png);
}
.sec4 h5{
    font-size: 1.125em;
    font-weight: normal;
}
.sec4 h5 b{
    font-weight: bold;
    font-size: 2em;
    margin-right: 1em;
}
.sec4 .line{
    height: 1px;
    background-color: #e5e5e5;
    margin: 10.5% 0 8.5%;
}
.sec4 p{
    line-height: 1.625;
    margin-bottom: 1em;
}
.sec4 p:last-child{
    margin-bottom: 0;
}



.sec5{
    padding: 10.4% 0;
}
.sec5 .inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}
.sec5 .text-box{
    color: #333;  
    opacity: 0;
    transition: transform 1s,opacity 1s;
    transform: translate(-50vw,0);
}
.sec5 .text-box.actived{
    opacity: 1;
    transform: translate(0,0);
}
.sec5 .text-box h4{
    font-size: 1.125em;
    font-weight: bold;
    color: var(--theme-color);
    margin-bottom: 1.5em;
}
.sec5 .text-box h4::before{
    display: inline-block;
    vertical-align: middle;
    content: '';
    width: 2.22em;
    height: 1px;
    margin-right: 0.78em;
    background-color: var(--theme-color);
}
.sec5 .text-box h4 b{
    display: inline-block;
    vertical-align: middle;
}
.sec5 .text-box h3{
    font-size: 1.75em;
    font-weight: bold;
    margin-bottom: 1.75em;
}
.sec5 .text-box li{
    margin-bottom: 1.5em;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
}
.sec5 .text-box li:last-child{
    margin-bottom: 0;
}
.sec5 .text-box .icon-box{
    width: 2.875em;
    height: 2.875em;   
    background-color: var(--theme-color);
    border-radius: 50%;
    margin-right: 2em;
    fill: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sec5 .text-box .icon-box svg{
    width: auto;
    height: 50%;
}
.sec5 .text-box p{
    line-height: 1.75;
}
.sec5 .map-box{
    width: 62.7%;
    position: relative;
    overflow: hidden;
    display: block;
    opacity: 0;
    transition: transform 1s,opacity 1s;
    transform: translate(50vw,0);
}
.sec5 .map-box.actived{
    opacity: 1;
    transform: translate(0,0);
}
.sec5 .map-box img{
    transition: transform 0.75s;
}
.sec5 #map{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
@media only screen and (min-width:1025px){
    .sec1 .img-box li:hover img{
        transform: scale(1.1);
    }
    .sec2 li:nth-child(2){
        transition-delay: 0.25s;
    }
    .sec2 li:nth-child(3){
        transition-delay: 0.5s;
    }
    .sec2 li:nth-child(4){
        transition-delay: 0.75s;
    }
    .sec3 .swiper-prev:hover,.sec3 .swiper-next:hover{
        color: var(--theme-color);
    }
    .sec5 .map-box:hover img{
        transform: scale(1.1);
    }
}
@media only screen and (max-width:1024px){
    .sec1{
        padding: 15% 0;
    }
    .sec1 .inner{
        display: block;
    }
    .sec1 .text-box{
        transform: translate(0,20vh);
    }
    .sec1 .img-box{
        transform: translate(0,20vh);
    }
    .sec1 .text-box{
        width: 100%;
        margin-bottom: 10%;
    }
    .sec1 .text-box h5{
        font-size: 1em;
        margin-bottom: 1.56em;
    }
    .sec1 .text-box p{
        font-size: 0.875em;
    }
    .sec1 .img-box{
        width: 100%;
    }


    .sec2{
        padding: 70% 0 50%;
    }
    .sec2 .img-box{
        display: block;
    }
    .sec2 .img-box .left{
        width: 100%;
        height: 35%;
        background-size: cover;
    }
    .sec2 .img-box .right{
        width: 100%;
        height: 65%;
    }
    .sec2 .img-box .right:before{
        width: 30em;
        height: 28.5em;
        bottom: 0;
        top: auto;
    }
    .sec2 .img-box .right:after{
        margin-right: 70%;
        margin-bottom: 10%;
    }
    .sec2 .inner{
        display: block;
    }
    .sec2 .text-box{
        padding: 15% 10%;
        width: 100%;
        margin-right: 0;
    }
    .sec2 li{
        margin-bottom: 1.5em;
    }
    .sec2 h5{
        font-size: 1.125em;
    }
    .sec2 p{
        font-size: 0.9375em;
        padding-left: 2em;
    }




    .sec3{
        padding: 15% 0;
    }
    .sec3 .title{
        margin-bottom: 10%;
    }
    .sec3 h3{
        font-size: 1.75em;
    }
    .sec3 .swiper-prev,.sec3 .swiper-next{
        width: 3em;
        height: 3em;
    }
    .sec3 .swiper-slide{
        width: 21em;
        padding: 1.5em 1.5em 2em;
    }
    .sec3 h5{
        font-size: 1.75em;
    }
    .sec3 p{
        font-size: 0.875em;
    }




    .sec4{
        padding: 15% 0;
    }
    .sec4 h3{
        font-size: 1.75em;
        margin-bottom: 10%;
    }
    .sec4 ul{
        display: block;
    }
    .sec4 li{
        width: 100%;
        padding: 2em 1.5em;
    }
    .sec4 li:first-child{
        margin-bottom: 10%;
    }
    .sec4 h5{
        font-size: 0.9375em;
    }
    .sec4 .line{
        margin: 5% 0;
    }
    .sec4 p{
        font-size: 0.875em;
    }


    .sec5{
        padding: 15% 0;
    }
    .sec5 .inner{
        display: block;
    }
    .sec5 .text-box{
        transform: translate(0,20vh);
        margin-bottom: 10%;
    }
    .sec5 .text-box h4{
        font-size: 1em;
    }
    .sec5 .text-box h3{
        font-size: 1.25em;
    }
    .sec5 .text-box .icon-box{
        width: 2.875em;
        height: 2.875em;
        margin-right: 1em;
    }
    .sec5 .text-box p{
        font-size: 0.875em;
    }
    .sec5 .map-box{
        width: 100%;
        transform: translate(0,20vh);
    }
}