.page_wrapper {
    display: flex;
}

.title_wrapper {
    width: 40%;
    border-right: 1px solid #f2f2f2;
    height: 100vh;
    position: relative;
    transition: all ease-in-out .5s;
}

.header_wrapper {
    width: 60%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 3;
    height: 60px;
    border-bottom: 1px solid #f2f2f2;
    transition: all ease-in-out .5s;
    background: #ffffff;
}

.content_wrapper {
    width: 60%;
    height: calc(100vh - 60px);
    margin-top: 60px;
    overflow-y: auto;
    transition: all ease-in-out .5s;
}

.title_box_wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.title_logo_wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.title_title_wrapper {
    color: #464646;
    font-size: 30px;
    font-weight: 700;
    margin-top: 20px;
}

.title_desc_wrapper {
    width: 100%;
    font-size: 14px;
    color: #565654;
    margin-top: 20px;
}

.title_link_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.title_link_item_wrapper {
    margin: 0 10px;
}

.title_beian_wrapper {
    position: absolute;
    bottom: 0;
    color: #A6A6A6;
    font-size: 10px;
    left: 0;
    right: 0;
    text-align: center;
}

.title_beian_item_wrapper {
    transition: all ease-in-out .5s;
}

.title_beian_item_wrapper:hover {
    color: #333333;
}

.title_gongan_beian_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0 20px;
}

.title_gongan_beian_wrapper img {
    width: calc(62px / 4);
    height: calc(67px / 4);
    display: block;
    margin-right: 10px;
}

.header_box_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header_group_wrapper {
    display: flex;
    align-items: center;
    color: #5A5A5A;
    padding-left: 20px;
}

.header_item_wrapper {
    padding: 0 10px;
    line-height: 60px;
    font-size: 12px;
    cursor: pointer;
    position: relative;
    transition: all ease-in-out .5s;
}

.header_item_line_wrapper {
    position: absolute;
    opacity: 0;
    left: 0;
    right: 0;
    bottom: 10px;
    height: 2px;
    border-radius: 2px;
    background: #5A5A5A;
    transition: all ease-in-out .5s;
}

.header_item_wrapper:hover {
    font-weight: bold;
}

.header_item_wrapper:hover .header_item_line_wrapper {
    opacity: 1;
    bottom: 0;
}

.header_item_wrapper.active {
    font-weight: bold;
}

.header_item_wrapper.active .header_item_line_wrapper {
    opacity: 1;
    bottom: 0;
}

.header_avatar_wrapper {
    width: 40px;
    height: 40px;
    margin-right: 20px;
    border-radius: 20px;
}

@media screen and (max-width: 960px) {
    .page_wrapper {
        display: block;
    }

    .title_wrapper {
        width: 100%;
        border-right: none;
        height: auto;
        margin-top: 60px;
        height: 260px;
    }

    .header_wrapper {
        width: 100%;
    }

    .content_wrapper {
        width: 100%;
        height: unset;
        margin-top: 0;
    }

    .title_box_wrapper {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 100%;
    }

    .title_logo_wrapper {
        width: 100px;
        height: 100px;
    }

    .title_title_wrapper {
        font-size: 24px;
    }

    .title_desc_wrapper {
        font-size: 12px;
        margin-top: 10px;
    }

    .title_link_wrapper {
        margin-top: 10px;
    }

    .title_beian_wrapper {
        display: none;
    }
}