
body{
    margin: 0;
}

.body{
    display: grid;
    grid-template-rows: 100vh auto;
}

.bodyBody{
    display: grid;
    grid-row: 1;
    grid-template-rows: min-content minmax(0,1fr);
    background-image: linear-gradient(145deg, rgba(162, 217, 255, 0.8), rgba(255, 175, 189, 0.8));
    padding: 10px;
}

.bodyBodyNavigation{
    grid-row: 1;
    display: grid;
    padding: 10px;
    grid-template-columns: repeat(3, max-content) 1fr;
    background-color: white;
    border-radius: 7px;
    box-shadow: 1px 1px 5px 0px #00000017;
}

.bodyBodyNavigationText{
    margin: 10px;
    text-decoration: none;
    color: #005fff;
    font-weight: 600;
}

.bodyBodyNavigationText:hover{
    color: #0044b6;
}

.bodyBodyMain{
    grid-row: 2;
    display: grid;
    grid-template-columns: max-content 1fr;
}

.bodyBodyMainSidebar{
    grid-column: 1;
    background-color: white;
    border-radius: 10px;
    margin: 10px;
    margin-left: 0;
    padding: 10px;
    display: grid;
    grid-template-rows: max-content 1fr;
}

.bodyBodyMainSidebarTitle{
    margin: 15px;
    text-align: center;
}

.bodyBodyMainSidebarText{
    margin: 0;
    padding: 10px;
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 1.8;
}

.bodyBodyMainSidebarTextTitle{
    font-weight: 700;
}

.bodyBodyMainMain{
    grid-column: 2;
    background-color: white;
    border-radius: 10px;
    margin: 10px;
    margin-right: 0;
    padding: 10px;
    overflow-y: auto;
}

.bodyFooter{
    grid-row: 2;
    display: grid;
    grid-template-rows: auto auto auto;
    place-items: center;
    background-color: #ebebeb;
}

.bodyFooterCopyrightText{
    margin: 0;
    grid-row: 1;
    color: #868686;
}

.bodyFooterGongxinbuFiling{
    grid-row: 2;
}

.bodyFooterGongxinbuFilingText{
    color: #868686;
    text-decoration: none;
}

.bodyBodyFooterSugongwangFiling{
    grid-row: 3;
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
}

.bodyBodyFooterSugongwangFilingImg{
    height: 18px;
    width: 18px;
}

.bodyBodyFooterSugongwangFilingText{
    color: #868686;
    text-decoration: none;
}


@media (max-width: 800px) {
    .bodyBodyMain{
        grid-template-columns: 2fr 5fr;
    }
}

@media (max-width: 475px) {
    .bodyBodyMain{
        grid-template-columns: 1fr;
        grid-template-rows: max-content 1fr;
    }
    .bodyBodyMainSidebar{
        grid-row: 1;
        grid-column: 1;
        margin-right: 0;
    }
    .bodyBodyMainMain{
        grid-row: 2;
        grid-column: 1;
        margin-left: 0;
    }
    .bodyBodyMainSidebarTitle{
        margin: 0;
    }
}

