.anchor_layer {
    height: 84px;
    width: 100%;
    margin-bottom: 160px;
}

.anchor_layer .nav_wrap {
    height: 84px;
    overflow: hidden;
    text-align: center;
}

.anchor_layer .nav_wrap.navFix {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    border-radius: 0;
    z-index: 9999;
    background-color: #ffffff;
}

.anchor_layer .nav_wrap .wrap_layer {
    height: 84px;
    padding: 0 10px;
    display: flex;
    justify-content: center;
}

.anchor_layer .nav_wrap .wrap_tab {
    width: 20%;
    max-width: 280px;
    min-width: 150px;
    height: 84px;
    /* display: inline-block; */
    text-align: center;
    border-bottom: #d7d7d8 solid 1px;
    position: relative;
}

.anchor_layer .nav_wrap .wrap_tab::after {
    position: absolute;
    content: '';
    display: inline-block;
    width: 1px;
    height: 12px;
    background-color: #e8e8e8;
    right: 0;
    bottom: 0;
}
.anchor_layer .nav_wrap .wrap_tab:last-child::after{
    display: none;
}

.anchor_layer .nav_wrap a {
    width: 70%;
    height: 32px;
    border-radius: 4px;
    display: inline-block;
    line-height: 32px;
    font-size: 14px;
    color: #000000;
    margin-top: 26px;
    transition: .7s cubic-bezier(0, .05, 0, 1);
}

.anchor_layer .nav_wrap a:hover {
    background-color: #f4f4f4;
}

.anchor_layer .nav_wrap a.active:hover,
.anchor_layer .nav_wrap .active,
.details_main .anchor_layer .nav_wrap a:hover {
    background-color: #2b2c31;
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .anchor_layer .nav_wrap .wrap_layer{
        overflow-x: auto;
        justify-content: start;
    }
    .anchor_layer{
        margin-bottom: 50px;
    }
}