a{
    text-decoration: none;
    font-size: 16px;
}
.nav{
    width: 100%;
    height: 80px;
    background-color: #333;
}
.image{
    width: 100%;
}
.image>img{
    width: 100%;
}
.box{
    box-sizing: border-box;
    padding: 60px 0;
    width: 60%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.box>div{
    width: calc(100% / 4);
    height: 220px;
    border: #e0e0e0 solid 1px;
    box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.1);
    position: relative;
    box-sizing: border-box;
    padding: 20px 40px;
    text-align: center;
}
.line{
    width: 90%;
    position: absolute;
    height: 1px;
    background-color: #e0e0e0;
    top: 60px;
    left: 5%;
    z-index: 1;
}
.title{
    color: #444;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 20px;
    line-height: 40px;
    font-size: 18px;
    background-color: #FFFFFF;
    z-index: 2;
}
.info{
    color: #666;
    padding-top: 70px;
    font-size: 16px;
}

.footer{
    width: 60%;
    margin: 0 auto;
    margin-top: 100px;
    display: flex;
    /* justify-content: space-between; */
    justify-content: center;
    
}
.footer>div{
    width:300px; 
    padding:20px 0;
}
.footer>div>a{
    display:inline-block;
    text-decoration:none;
    height:20px;
    line-height:20px;
}
.footer>div>a>img{
    float:left;
}
.footer>div>a>p{
    float:left;
    height:20px;
    line-height:20px;
    margin: 0px 0px 0px 5px; 
    color:#939393;
}