.wrap {width: 100vw; height: 100vh; background: #111;}
.header_menu {
    width: 100%;
    height: 69px;
    display: flex;
    border-bottom: 1px solid #222;
    box-sizing: border-box;
    position: relative;
}
.header_menu_L {
    width: 30%;
    max-width: 386px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    box-sizing: border-box;
    
    color: #fff;
}
.header_menu_name {
    display: flex;
    flex-direction: column;
}
.header_menu_name > p:nth-child(1) {font-size: 11px;}
.header_menu_name > p:nth-child(2) {font-size: 28px;}
.menu_slide_btn {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(135deg);
}
.header_menu_R {
    width: 70%;
    height: 100%;
    border-left: 1px solid #222;
    box-sizing: border-box;
}
.header_menu_ul {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    color: #808080;
    font-weight: 700;
    text-align: center;
}
.header_menu_li {
    width: auto;
    height: 100%;
    position: relative;
    padding: 0 3%;
}
.header_menu_li::after {
    content: '';
    display: block;
    width: 14px;
    height: 43px;
    position: absolute;
    left: 96%;
    top: 50%;
    transform: translateY(-50%) scale(0.7);
    background: url(../corvette_img/quote/direction.png) no-repeat center / cover;
}
.header_menu_li5::after {display: none;}
.header_menu_li > span {
    display: inline-block;
    padding: 25.1px 9px;
    border-bottom: 2px solid transparent;
    box-sizing: border-box;
    /* cursor: pointer; */
}
.header_menu_li_act {color: #ad7b61 !important;}
/* .header_menu_li5 > span {padding: 16.7px 9px !important;} */

.quote_close_btn {
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    fill: #fff;
    cursor: pointer;
}