/* pc */
.pc_menu {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 78px;
    background: linear-gradient(180deg, #000, transparent);
    width: 100%;
    z-index: 999;
    transition: all ease-in-out .3s;
}

.pc_menu_box {
    display: flex;
    align-items: center;
}

.menu_logo {
    width: 160px;
}

.menu_btn {
    background: #0080FE;
    border-radius: 30px;
    margin-left: 15px;
    padding: 10px 20px 10px;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
}

.menu_box {
    margin-left: 30px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.menu_item {
    position: relative;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 20px;
    cursor: pointer;
    z-index: 10;
    margin-left: 30px;
}

.menu_item_active {
    background-image: url('../img/MenuSlides.png');
    background-color: rgba(0, 0, 0, .3);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% 7px;
    filter: invert(100%);
}

.menu_item>span:hover {
    color: #3cd6ef;
}

.menu_item_name::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.menu_item_box {
    background: rgba(37, 41, 44, .9);
    padding-left: 0;
    width: 0;
    border-top: 3px solid #0080FE;
    position: absolute;
    z-index: 11;
    top: 100%;
    left: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .3s ease-in-out;
    min-width: 250px;
}

.menu_item:hover .menu_item_box {
    top: 50%;
    opacity: 1;
    visibility: visible;
    width: 100%;
    height: auto;
}

.menu_item_box .ul {
    padding: 18px 8px;
}

.menu_item_box .li {
    padding: 20px 30px 20px;
    line-height: 1;
}

.menu_item_box .li a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.menu_item_box .li a img {
    width: 18px;
    height: 18px;
    margin-right: 18px;
    object-fit: contain;
    filter: invert(80%);
}

.menu_item_box .li a:hover {
    color: #ff8104;
}

.menu_item_box2 {
    display: flex;
    flex-wrap: wrap;
    min-width: 920px;
}


.menu_item_bottom {
    width: 100%;
    background: #000;
    color: #0080FE;
    padding: 20px;
    display: flex;
    justify-content: end;
    align-items: center;
    color: #0080FE;
}

.menu_item_bottom a {
    color: #0080FE;
    border: 1px solid #0080FE;
    background-color: transparent;
    padding: 6px 12px;
    text-decoration: none;
    border-radius: 80px;
    margin-left: 20px;
    display: block;
}

.menu_item_left {
    padding: 10px 0 20px 0;
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
}

.menu_item_left_lis {
    padding: 5px 20px 5px;
}

.menu_item_left_li {
    color: #fff;
    padding: 20px 10px;
    width: 240px;
    display: flex;
    align-items: center;
}

.menu_item_left_li img {
    width: 22px;
    margin-right: 10px;
}

.menu_item_left_li:hover {
    color: #3cd6ef;
    background-color: rgba(0, 0, 0, 0.5);
}

.menu_left_children {
    position: absolute;
    height: calc(100% - 72px);
    width: 600px;
    top: 10px;
    left: 260px;
    display: flex;
    align-items: flex-start;
    visibility: hidden;
}

.menu_left_children .ul {
    margin-left: 20px;
    flex: 1;
}

.menu_item_left_lis:nth-child(4) .menu_left_children {
    visibility: visible;
}

.menu_item_left_lis:hover .menu_item_left_li .menu_left_children {
    visibility: visible;
}

.menu_item_left_lis:hover~.menu_item_left_lis .menu_left_children {
    visibility: hidden;
}

@media (max-width: 1200px) {
    .pc_menu {
        height: 70px;
    }

    .menu_logo {
        width: 120px;
    }

    .menu_btn {
        padding: 6px 12px 6px;
        font-size: 13px;
    }

    .menu_item {
        font-size: 13px;
        padding: 6px 12px;
    }

    .menu_item_box2 {
        left: -200px;
    }
}

.mune_icon {
    display: none;
    width: 24px;
    height: 24px;
    margin-left: 24px;
    cursor: pointer;
}

.h5_menu {
    display: none;
    width: 260px;
    height: 100%;
    position: fixed;
    background-color: rgba(37, 41, 44, .98);
    z-index: 9999;
    top: 0;
    display: none;
    flex-direction: column;
    right: -300px;
    transition: all ease-in-out .3s;
}

.h5_menu_open {
    right: 0;
}

.menu_close_icon {
    height: 65px;
    width: 100%;
    position: relative;
}

.menu_close_icon::after {
    content: "\2715";
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    line-height: 20px;
    font-size: 20px;
    background-color: #feb600;
    border-radius: 50%;
    height: 34px;
    width: 34px;
    position: absolute;
    top: 16px;
    right: 14px;
    cursor: pointer;
}

.h5_menu_box {
    flex: 1;
    overflow-y: auto;
    padding-top: 12px;
}

.h5_menu_box::-webkit-scrollbar {
    width: 0;
    height: 0;
    scrollbar-width: none;
    scrollbar-color: transparent transparent;
    -ms-overflow-style: none;
}

.h5_menu_item {
    font-size: 12px;
    color: #fff;
    line-height: inherit;
    max-width: 100%;
    text-transform: uppercase;
    cursor: pointer;
}

.h5_menu_title {
    display: flex;
    padding: 14px 20px 14px 15px;
    align-items: center;
    justify-content: space-between;
    color: #3cd6ef;
}

.sigle_title {
    color: #fff;
}

.sigle_title:hover {
    color: #007bff;
}

.h5_menu_title img {
    width: 12px;
    height: 12px;
}

.h5_menu_children {
    background-color: #000;
    color: #0080FE;
    padding: 5px 0;
}

.h5_children_item {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0 12px 12px;
    flex-wrap: wrap;
}

.h5_children_item a {
    color: #0080FE;
    text-decoration: none;
}

.h5_children_item img {
    width: 13px;
    height: 13px;
    margin-right: 20px;
}

.h5_menu_item .h5_menu_children {
    visibility: hidden;
    width: 0;
    height: 0;
}

.h5_menu_item_active .h5_menu_children {
    visibility: visible;
    width: auto;
    height: auto;
}

.h5_menu_subchildren {
    width: 260px;
    position: relative;
    left: -10px;
    padding: 5px 0;
    background-color: rgba(37, 41, 44, .5);
    margin-top: 12px;
    display: none;
}

.h5_children_item_active .h5_menu_subchildren {
    display: block;
}

.h5_menu_subchildren::after {
    content: "";
    width: 20px;
    height: 100%;
    position: absolute;
    top: 0;
    right: -20px;
    background-color: rgba(37, 41, 44, .5);
}

.h5_menu_subchildren_item {
    height: 48px;
    padding: 12px 10px 12px 15px;
}

@media (max-width: 992px) {
    .pc_menu_box {
        max-width: 100% !important;
        height: 100%;
    }

    .menu_box {
        display: none;
    }

    .menu_btn {
        display: none;
    }

    .mune_icon {
        display: block;
    }

    .h5_menu {
        display: flex;
    }
}

@media (max-width: 576px) {
    .pc_menu_box {
        padding: 0 20px;
    }
}