#app{
    
}
.section-01{
    width: 100%;
    height: 818px;
    background-image: url(../assets/icons/company/section01Bgi.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.section-01 .textBox{
    width: 537px;
    height: 134px;
}
.section-01 .left{
    background-image: url(../assets/icons/company/section01-1.png);
}
.section-01 .right{
    background-image: url(../assets/icons/company/section01-2.png);
}


.section-02{
    width: 100%;
    height: 1037px;
    background-color: #fff;
    color: #333;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
}
.section-02 .title{
    font-size: 34px;
    font-weight: bold;  
    margin: 45px;
}
.section-02 .desc{
    font-size: 20px;
    font-weight: 400;
    text-indent: 2em;
    line-height: 40px;
    width: 1078px;
}
.section-02 .grid{
    /* width: 1200px; */
    height: 300px;
    position: absolute;
    bottom: 0;
    display: flex;
}
.section-02 .grid .li{
    width: 400px;
    height: 300px;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    margin: 0 20px;
}
.section-02 .grid .li >.li-front,.li-back{
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: .6s;
    backface-visibility: hidden;
    background-color: #0D61BA;
    color: #fff;
    position: relative;
}
.section-02 .grid .li .li-back{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.section-02 .grid .li .inner{
    perspective: inherit;
    backface-visibility: hidden;
    transform: translateZ(60px) scale(.94);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    box-sizing: border-box;
    padding: 0 15px;
    text-align: center;
}
.section-02 .grid .li .inner .innerTitle{
    font-size: 34px;
    font-weight: bold;
}
.section-02 .grid .li .inner .innerDesc{
    font-size: 24px;
    font-weight: 400;
    margin-top: 20px;
}
.section-02 .grid .li:nth-child(1) .li-back{
    background-image: url(../assets/icons/company/section02-1.png);
}
.section-02 .grid .li:nth-child(2) .li-front{
    background-image: url(../assets/icons/company/section02-2.png);
}
.section-02 .grid .li:nth-child(3) .li-back{
    background-image: url(../assets/icons/company/section02-3.png);
}
.section-02 .grid .li .li-front{
    transform: rotateX(0);
}
.section-02 .grid .li .li-back{
    transform: rotateX(-180deg);
}
.section-02 .grid .li:hover .li-front{
    transform: rotateX(180deg);
}
.section-02 .grid .li:hover .li-back{
    transform: rotateX(0);
}
.section-02 .grid .li .li-front::before{
    position: absolute;
    content: "";
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    animation: section02-li-pulseanim 1.5s infinite cubic-bezier(.4,0,1,1) both;
}
@keyframes section02-li-pulseanim {
    0% {
        box-shadow: 0 0 0 0 rgba(255,255,255,.5)
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255,255,255,0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255,255,255,0)
    }
}

.section-03{
    background-image: url(../assets/icons/company/section03.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 100%;
    height: 1400px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    box-sizing: border-box;
    padding: 100px 400px 200px;
}
.section-03 .li{
    display: flex;
    align-items: center;
    flex-direction: column;
}
.section-03 .li img{
    width: 278px;
    height: 392px;
}
.section-03 .li .name{
    font-size: 23px;
    font-weight: bold;
    color: #fff;
    margin-top: 30px;
}

.section-04{
    width: 100%;
    height: 839px;
    background-image: url(../assets/icons/company/section04.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}
.section-04 .msg{
    width: 1093px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
}
.section-04 .msg .li{
    display: flex;
    align-items: center;
    font-size: 24px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #333333;
}
.section-04 .msg .li:nth-child(n+2){

}
.section-04 .msg .li img{
    margin-right: 15px;
}
.section-04 .msg .li:first-child img{
    width: 32px;
    height: 34px;
}
.section-04 .map{
    width: 1093px;
    height: 650px;
    background-image: url(../assets/icons/company/section04-1.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}