@media screen and (max-width: 1199px) {
    .header_wrap {
        width: 100%;
        height: 1rem;
        background: #FFFFFF;
        position: fixed;
        left: 0;
        top: 0;
        z-index: 9999;
    }

    .header_shadow {
        width: 100%;
        box-shadow: 0px 0.06rem 0.12rem 0.02rem rgba(0, 37, 14, 0.07);
    }

    .head_top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 0.32rem;
        height: 1rem;
    }

    .head_top p:first-child img {
        width: 2.22rem;
        height: 0.6rem;
    }

    .head_top p:nth-child(2) img {
        width: 0.6rem;
        height: 0.6rem;
    }

    .head_menu_close {
        display: none;
    }


    .head_menu_wrap {
        position: absolute;
        top: 1rem;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.23);
        height: calc(100vh - 1rem);
        justify-content: flex-end;
        display: none;
    }

    .head_menu {
        width: 5.26rem;
        height: 100%;
        background: #ffffff;
    }

    .head_menu li {
        border-bottom: 0.02rem solid rgba(0, 0, 0, 0.05);
        font-size: 0.32rem;
    }

    .head_menu .head_menu_title {
        height: 1rem;
        padding: 0 0.32rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .head_menu_title img {
        width: 0.4rem;
        height: 0.4rem;
    }

    .secMenu_close {
        display: none;
    }

    .secMenu {
        display: none;
        font-size: 0.28rem;
        color: #777777;

    }

    .secMenu_list_title {
      padding: 0.26rem 0.68rem;

    }




}

@media screen and (min-width: 1200px) {
    .header_wrap {
        width: 100%;
        height: 70px;
        background: #FFFFFF;
        position: fixed;
        left: 0;
        top: 0;
        z-index: 9999;

    }

    .header_shadow {
        display: flex;
        justify-content: center;
        width: 100%;
        box-shadow: 0px 6px 14px 1px rgba(0, 0, 0, 0.16);
    }

    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .head_left > img {
        width: 200px;
        height: 61px;
        margin-right: 97px;
        cursor: pointer;
    }

    .head_left {
        display: flex;
        align-items: center;
    }

    .head_menu {
        display: flex;
        font-size: 16px;
        color: #777777;
        height: 70px;
    }

    .head_menu li > p {
        height: 69px;
        line-height: 69px;
        border-bottom: 2px solid transparent;
        padding: 0 28px;
        cursor: pointer;
    }

    .head_menu li > p:hover {
        background: #F9F7FF;
        color: #3400CB;
        border-bottom-color: #3400CB;
    }

    .head_menu li.active > p {
        background: #F9F7FF;
        color: #3400CB;
        border-bottom-color: #3400CB;
    }

    .head_btn {
        padding: 10px 20px;
        background: #3400CB;
        border-radius: 6px 6px 6px 6px;
        color: #FFFFFF;
        font-size: 14px;
        cursor: pointer;
    }

    .secMenu {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        margin: auto;
        background: #FFFFFF;
        box-shadow: 0px 5px 9px 1px rgba(28, 7, 90, 0.1);
        height: 356px;
        z-index: -1;
        padding-top: 70px;
        box-sizing: border-box;
        display: none;
    }

    .secMenu_list_wrap {
        width: 1200px;
        margin: 40px auto 0;
        display: flex;
    }

    .secMenu_list {
        width: 367px;
        color: #333333;
        margin-right: 50px;
    }

    .secMenu_list:last-child {
        margin-right: 0;
    }

    .secMenu_list_title {
        display: flex;
        align-items: center;
        padding: 0 20px 30px;
        font-size: 20px;
        font-family: Medium;
        cursor: pointer;
        border-bottom: 1px solid #EEEEEE;
        line-height: 20px;

    }

    .secMenu_list_title img {
        width: 20px;
        height: 20px;
        margin-left: 8px;
    }

    .secMenu_icon2 {
        display: none;
    }

    .secMenu_list_title:hover {
        color: #3400CB;
    }

    .secMenu_list_title:hover .secMenu_icon2 {
        display: block;
    }

    .secMenu_list_title:hover .secMenu_icon1 {
        display: none;
    }

    .secMenu_lists {
        display: flex;
        flex-wrap: wrap;
        margin-top: 30px;
        padding-left: 20px;


    }

    .secMenu_lists p {
        width: 50%;
        display: flex;
        align-items: center;
        font-size: 16px;
        line-height: 16px;
        margin-bottom: 20px;
        cursor: pointer;
    }

    .secMenu_lists p:hover {
        color: #3400CB;
    }

    .secMenu_lists p img {
        width: 16px;
        height: 16px;
        margin-right: 8px;
    }

}

