
.downModule{
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.down-left{
    width: 15%;
    background-color: #fff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0 0 16px 1px rgba(63, 76, 136, 0.3);
    -moz-box-shadow: 0 0 16px 1px rgba(63, 76, 136, 0.3);
    box-shadow: 0 0 16px 1px rgba(63, 76, 136, 0.3);
    overflow: hidden;
    min-height: 500px;
    margin-top: 50px;
    border-radius: 10px;
}

.down-right{
    width: 80%;
    background-color: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 16px 1px rgba(63, 76, 136, 0.3);
    -moz-box-shadow: 0 0 16px 1px rgba(63, 76, 136, 0.3);
    box-shadow: 0 0 16px 1px rgba(63, 76, 136, 0.3);
    padding: 35px 25px 25px;
    min-height: 500px;
    margin-top: 50px;
}
.down-left>div{
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}
.down-left>div:hover{
    background-color: #ccc;
    cursor: pointer;
}
.down-left>div>p{
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid #999;
    text-align: center;
    font-size: 16px;
    color: #40579b;
    font-weight: 700;
}


.navigation{
    position: absolute;
    right: 10px;
    top: 30px;
    font-size: 13px;
}
.navigation>a{
   color: #ccc;
}
.navigation>a:hover{
   color: #40579b;
    text-decoration: underline;
}