.SubPage{
         padding: 30px 0;
    .content{
        .ContentWrap{
             .contentHead{
                padding-bottom:20px ;
                h5{
                    font-size: 30px;
                    color: #000;
                    font-weight: 600;
                    line-height: 41px;
                }
             }
            .contentImg{
                width: 100%;
                height: 550px;
                display: flex;
                align-items: center;
                justify-content: center;
                background-color: rgb(223, 223, 223);
                img{
                    width: 100%;
                    max-height: 600px;
                }
            }
            .contentText{
                padding-top: 50px;
                p{
                    font-size: 16px;
                    color: #4c4b4b;

                }
            }
        }
        .subcontainer{
            margin-top: 10px;
            display: flex;
            padding: 10px;
            border: 1px solid #bdbdbd;
            &:hover{
                background-color: #f3f3f3;
            }
            .subImg{
                    width: 45%;
                    height: 110px;
                    background-color: rgb(220, 220, 220);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    img{
                        width: 100%;
                        max-height: 100%;
                     }
            }
            .subContent{
                width: 55%;
                padding: 0 10px;
                 a{
                    font-size: 15px;
                    color: rgb(89, 89, 89);
                    &:hover{
                        color: $black;
                    }
                }
            }
        }
    }
}