.head-template {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
}
#head {
    position: relative;
    width: 100%;
    min-width: 1700px;
    height: 7.6rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-left: 6.8rem;
    padding-right: 9.5rem;
    padding-bottom: 1rem;
    background-image: url("http://ossshow.sczyhl.cn/Official/navbar.png");
    background-repeat: no-repeat;
    font-size: 1.5rem !important;
    transition: all .25s linear;
    box-shadow: 0 .4rem .8rem rgba(0, 0, 0, 0.12);
}

#head .logo {
    cursor: pointer;
}

#head .navbar {
    position: relative;
    display: flex;
    flex-direction: row;
    font-size: 1.5rem;
}

#head .navbar .nav-item {
    position: relative;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-right: 7.4rem;
    font-weight: 600;
    letter-spacing: .2rem;
    cursor: pointer;
}

#head .navbar .nav-item  {
    transition: all .25s linear;
}

#head .navbar .nav-item:last-child {
    margin-right: 0;
}

#head .navbar .active {
    color: #EBA924 !important;
}

#head .navbar .active:after {
    content: "";
    width: .6rem;
    height: .6rem;
    border-radius: .6rem;
    background-color: #EBA924;
    position: absolute;
    bottom: .3rem;
    transition: all .25s linear;
    opacity: 1 !important;
}

#head .navbar .nav-item:hover {
    color: #EBA924;
}

#head .navbar .nav-item::after {
    content: "";
    width: .6rem;
    height: .6rem;
    border-radius: .6rem;
    background-color: #EBA924;
    position: absolute;
    bottom: .3rem;
    transition: all .25s linear;
    opacity: 0;
}

#head .navbar .nav-item:hover::after {
    opacity: 1;
}
#content-body {
    margin-top: 7.6rem;
}
