.menuBarIcon{
    margin-right: 20px;
    font-family: "iconfont" !important;
    font-size: 28px;
    font-style: normal;
    color: #323D47;
    text-align: center;
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.joinIcon{
    margin: 20px;
    font-family: "iconfont" !important;
    font-size: 70px;
    font-style: normal;
    /* text-align: center;*/
    display: inline-block; 
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.contactUsIcon{
    margin: 20px;
    font-family: "iconfont" !important;
    font-size: 120px;
    font-style: normal;
    text-align: center;
    color: #323D47;
    display: block; 
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.right{
    float: right;
}
.rotate{
    transform: none;
    transition: all .3s ease-in-out;
}
.rotate1{
    transform:rotate(180deg);
    transition: all .3s ease-in-out;
}
.titleImg{
    width: 100%;
    height:90vh;
    background: url(../../about/images/pexels-fauxels-压缩1920.jpg) no-repeat;
    background-size: cover;
}
.titleImg h1{
    margin:0 auto 30px;
    font-size: 96px;
    font-weight: bold;
    color: white;
}
.titleImg h4{
    text-align: center;
    font-size: 36px;
    color: white;
}
.menuBar{
    text-align: center;
    line-height: 70px;
    border-bottom: 1px solid black;
    width: 72%;
    height: auto;
    padding-bottom: 40px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(3,19%);
    justify-content: center;
    grid-gap: 17%;
}
.menuBar div{
    height: 70px;
    display: inline-block;
    border: 1px solid #AAAAAA;
    border-radius: 15px;
    font-size: 24px;
    background-color: white;
    transition: background-color .3s ease-in-out;
}
.menuBar div:hover{
    background-color: #323D47;
    transition: background-color .3s ease-in-out;
}
.menuBar div:hover span{
    color: white;
    transition: color .3s ease-in-out;
}
.menuBar div a{
    display: block;
    width: 100%;
    height: 100%;
}
.weTeam{
    width: 36%;
    margin: 150px auto;
}
.weTeam img{
    width: 100%;
    height: auto;
}
h2{
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    margin: 100px 0 40px 0;
}
.weTeam p{
    font-size: 24px;
    line-height: 30px;
    text-align: center;
}
.post h2{
    margin-top: 234px;
}
.post h3{
    position: relative;
    top: -15px;
    font-size: 36px;
    font-weight: bold;
    display:inline-block;
}
.post{
    width: 100%;
}
.postDiv{
    color: white;
    width: 52.5%;
    margin: 50px auto;
    background-color: #323D47;
    overflow: hidden;
    cursor:pointer;
    border-radius: 30px;
    box-shadow: 3px 3px 10px #3c3c3c;
    transition: box-shadow .3s ease-in-out;
}
.close{
    height: 105px !important;
    transition: all .3s ease-in-out;
}
.unfold{
    height: 1000px;
    transition: all .3s ease-in-out;
}

.postDiv:hover{
    box-shadow: 5px 5px 20px #3c3c3c;
}
.postDiv h4{
    margin: 30px;
    font-size: 28px;
    font-weight: bold;
}
.postDiv p{
    font-size: 22px;
    text-indent: 2em;
    line-height: 30px;
}
.postDiv div{
    width: 90%;
    margin: 0 auto;
    padding-bottom: 20px;
    border-bottom: 2px white solid;
}
.postDiv .resume{
    padding: 20px;
    text-align: center;
    display: block;
    font-size: 28px;
}
.copyEmail{
    color: #fff;
    display: block;
    border: 1px solid #fff;
    font-size: 20px;
    width: 180px;
    height: 50px;
    margin: 0 auto;
    transition: color .3s ease-in-out ,
                border .3s ease-in-out,
                background-color .3s ease-in-out;
}
.copyEmail:hover{
    color: #323D47;
    background-color: #fff;
    border: 1px solid #fff;
    transition: color .3s ease-in-out ,
                border .3s ease-in-out ,
                background-color .3s ease-in-out;
}
.contactUsIcon{
    width: 100%;
    margin: 150px auto;
}
.contactUs h2{
    margin-top: -100px;
}
.contactUs p{
    text-align: center;
    margin: 20px;
    font-size: 18px;
}
.buses{
    margin: 45px ;
    text-align: center;
}
.bus{
    background-color: #323D47;
    color: white;
    padding: 3px;
}

/* 地图 */
.map{
    margin-top: 40px !important;
}

/* 多端自适应 */
@media all and (max-width:1455px) {
    .weTeam{
        width: 50%;
    }
    .menuBar{
        grid-template-columns: repeat(3,25%);
    }
    .postDiv{
        width: 70%;
    }
}
@media all and (max-width:1010px) {
    .weTeam{
        width: 60%;
    }
    .menuBar{
        grid-template-columns: repeat(3,30%);
    }
    .postDiv{
        width: 75%;
    }
    .titleImg h1{
        font-size: 72px;
    }
    .titleImg h4{
        font-size: 28px;
    }
}
@media all and (max-width:888px) {
    .weTeam{
        width: 70%;
    }
    .weTeam h2{
        font-size: 32px;
    }
    .weTeam p{
        font-size: 18px;
    }
    .menuBar{
        grid-template-columns: repeat(3,33%);
        grid-gap: 5%;
    }
    .postDiv{
        width: 85%;
    }
    .unfold{
        height: 950px;
    }
    .titleImg h1{
        font-size: 72px;
    }
    .titleImg h4{
        font-size: 28px;
    }
    .menuBar span{
        font-size: 22px;
    }
}
@media all and (max-width:715px) {
    .weTeam{
        width: 70%;
    }
    .menuBar{
        grid-template-columns: repeat(3,33%);
        grid-gap: 5%;
    }
    .menuBar span{
        font-size: 18px;
    }
    .postDiv{
        width: 85%;
    }
    .close{
        height: 75px !important;
    }
    .postDiv p{
        font-size: 16px;
    }
    .postDiv span{
        font-size: 36px;
    }
    .postDiv h3{
        font-size: 22px;
        top: -7px;
    }
    .resume{
        font-size: 20px ;
    }
    .titleImg h1{
        font-size: 48px;
    }
    .titleImg h4{
        font-size: 22px;
    }
}
@media all and (max-width:570px) {
    .titleImg h1{
        font-size: 32px;
    }
    .titleImg h4{
        font-size: 14px;
    }
    .menuBar span{
        font-size: 12px;
        margin-right: 0;
    }
    .weTeam{
        width: 80%;
        margin: 70px auto;
    }
    .postDiv p{
        font-size: 14px;
    }
    .postDiv span{
        font-size: 28px;
    }
    .postDiv h3{
        font-size: 22px;
        top: -5px;
    }
    .postDiv h4{
        font-size: 20px;
        margin: 10px;
    }
    .resume{
        font-size: 22px !important;
    }
    .close{
        height: 65px !important;
    }
    .buses span{
        font-size: 12px;
    }
    .menuBar div{
        height: 30px;
    }
    .menuBar a{
        line-height: 30px;
    }
    h2{
        font-size: 36px;
        margin: 30px 0 20px 0;
    }
    .post h2{
        margin-top: 120px;
    }
}
@media all and (max-width:390px) {
    .postDiv span{
        font-size: 12px;
    }
    .close{
        height: 55px !important;
    }
    .postDiv{
        width: 95%;
    }
    .postDiv h3{
        font-size: 12px;
        top: 0;
    }
    .menuBar div{
        height: 30px;
    }
    .menuBar a{
        line-height: 25px;
    }
    h2{
        font-size: 28px;
        margin: 30px 0 10px 0;
    }
}