
.content{
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding:40px 0;
}
.content .left{
    width:250px;
    display: flex;
    flex-direction: column;
    padding-top: 45px;
    padding-bottom: 45px;
    background-color: #fbfbfb;
    gap: 10px;
    border-top: 4px #242e9b solid;
}
.content .left a{
    display: block;
    line-height: 50px;
    padding-left: 45px;
    color:#242e9b;
    border-bottom: 1px #ddd solid;
}
.content .left a:hover{
    color:#fff;
    background-color: #242e9b;
}
.content .left a.act{
    color:#fff;
    background-color: #242e9b;
}

.content .right{
    width: calc(100% - 260px);
}
.content .right .con{
    padding:20px 0;
}
.content .right .con a{
    color: #192390;
}
.gdItem {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-top: 20px;
}

.gdItem a{
    width: 48%;
    height: 220px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 10px;
    padding: 0px 0;
}

.gdItem a img{
    border: 0px solid #bfbfbf;
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.28);
    float: left;
    width: 157px;
    height: 220px;
    border-radius: 4px;
}
.gdItem a .text {
    width: calc(100% - 177px);
    padding: 20px 10px;
    background-color: #fbfbfb;
}
.gdItem a .text:hover {
    background-color: #f1f1f1;
}

.gdItem a .text h1 {
    font-size: 22px;
    color: #192390;
    font-weight: 600;
    margin-bottom: 15px;
}
.gdItem a .text p {
    font-size: 16px;
    color: #333;
    line-height: 32px;
}

.gdItem a .text p:nth-child(3) {
    color: #919191;
}

@media only screen and (max-width: 1024px) and (min-width: 0px) {
    .content{
        flex-direction: column;
        padding:10px 0;
    }
    .content .left{
        width: 100%;
        flex-direction: row;
        justify-content: space-around;
        padding-top: 0px;
        border-top:0;
        padding-bottom: 0px;
    }
    .content .left a{
        display: block;
        line-height: 1;
        padding: 0.3rem;
        font-size:0.65rem;
        border:0;
    }
    .content .right{
        width: 100%;
    }
    .content .right .con {
        font-size:0.55rem;
    }

    .gdItem {
        flex-direction: column;
    }
    .gdItem a{
        width: 100%;
    }

}




