#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    border-bottom: 1px solid rgba(230, 230, 230, 0.12);
}

#header .header_box {
    width: 1200px;
    margin: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: .5s;
}

#header .header_box .logo_box {
    width: 217px;
    height: 58px;
}

#header .header_box .logo_box img {
    width: 100%;
    height: 100%;
}

#header .header_box .guide_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    margin-left: 70px;
    position: relative;
}

#header .header_box .guide_list li {
    position: relative;
    transition: .3s;
}

#header .header_box .guide_list li .list_a {
    color: #fff;
    display: block;
    font-size: 16px;
    padding: 40px 0;
    transition: .5s;
}

#header .header_box .guide_list li:hover {
    cursor: pointer;
}

#header .header_box .guide_list li:hover::after {
    content: "";
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #fff;
    transition: .3s;
}

#header .header_box .guide_list .on::after {
    content: "";
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #fff;
}

#header .header_box .guide_list .customParent:hover .custom {
    display: block;
}

#header .header_box .custom {
    position: absolute;
    top: 100px;
    left: -20px;
    right: -20px;
    z-index: 99;
    display: none;
    background: #10061F;
}

#header .header_box .custom a {
    color: #fff;
    display: block;
    padding: 20px;
}

#header .header_box .custom a:hover {
    background: rgba(255, 255, 255, 0.5);
}

#header .header_box .tel_box {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-left: 20px;
    margin-left: 20px;
    position: relative;
}

#header .header_box .tel_box img {
    width: 25px;
    height: 25px;
}

#header .header_box .tel_box a {
    color: #fff;
    font-size: 16px;
    margin-left: 10px;
}

#header .header_box .tel_box:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    height: 14px;
    background: #fff;
    margin: auto;
}

.header_active {
    background: rgba(16, 6, 31, 0.92) !important;
}

.header_active .guide_list li .list_a {
    padding: 30px 0 !important;
}

.header_active .guide_list li .custom {
    top: 78px !important;
}
