
.c-page-nav{
    width: 100%;
    background-color: white;
}
/* 状态栏 */
.status-wrap {
    background-color: #f5f5f5;
    padding: 5px 0px;
    font-size: 14px;
}

.status-a-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.status-wrap a {
    text-decoration: none;
    color: #666;
}

.status-wrap a:hover {
    color: var(--main-color);
}

.status-wrap a:nth-child(2)::before,
.status-wrap a:nth-child(2)::after {
    content: "|";
    font-size: 10px;
    color: #aaa;
    margin: 0px 10px;

}

/* top */
.top-wrap {
    padding: 20px 0px;
    line-height: 28px;
}

.top-wrap .top-right span {
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
    color: #333;
    line-height: 24px;
}

.top-wrap .top-right a:hover {
    color: var(--main-color);
}

.top-wrap .top-right img {
    height: 30px;
    margin-top: 8px;
    margin-right: 20px;
    width: 26px;
    height: 26px;
}

/* pc导航 */
.nav-wrap {
    background-color: #333;
}

.nav-wrap ul {
    margin: 0px;
}

.nav-wrap li {
    width: 12.5%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nav-wrap a {
    color: white;
    text-decoration: none;
    height: 60px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    z-index: 10;
}

.nav-wrap li.active {
    background-color: var(--main-color);
}

.nav-wrap li::after {
    position: absolute;
    height: 0;
    transition: all .3s ease;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 9;
    content: " ";
    background-color: var(--main-color);
}

.nav-wrap li:hover::after {
    height: 100%;
}

.nav-wrap li .second-navs {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0px;
    width: 100%;
    z-index: 20;
    background-color: #333;
}

.nav-wrap li:hover .second-navs {
    display: flex;
}

.nav-wrap li .second-navs a {
    position: relative;
    height: auto;
    width: auto;
    border-top: 1px solid white;
    z-index: 12;
    padding: 10px 10px;
}

.nav-wrap li .second-navs a span {
    z-index: 100;
    font-size: 14px;
}

.nav-wrap li .second-navs a::after {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    content: " ";
    background-color: var(--main-color);
    height: 0px;
    transition: all .5s ease;
    z-index: 10;
}

.nav-wrap li .second-navs a:hover::after {
    height: 100%;
}

/* 手机 */
.nav-wrap-phone {
    background-color: white;
    padding: 10px 0px;
    border-bottom: 1px solid #e3e3e3;
}
.nav-phone-wrap-left a {
    border-bottom: 1px solid #aaa;
}
.nav-phone-wrap-left a:hover{
    background-color: #f5f5f5;
}
.nav-phone-wrap-left-content {
    padding: 20px 10px;
    max-height: 100%;
    overflow-y: scroll;
}

.nav-wrap-phone .menu-wrap {
    height: 50px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.nav-wrap-phone .menu-wrap .menu {
    position: relative;
    width: 30px;
    background-color: #333;
    height: 2px;
}

.nav-wrap-phone .menu-wrap .menu::before {
    content: " ";
    width: 100%;
    left: 0px;
    background-color: #333;
    height: 2px;
    position: absolute;
    bottom: 10px;
    transition: all .5s ease;
}

.nav-wrap-phone .menu-wrap .menu::after {
    content: " ";
    width: 100%;
    left: 0px;
    background-color: #333;
    height: 2px;
    position: absolute;
    top: 10px;
    transition: all .5s ease;
}

.nav-wrap-phone .menu-wrap.active .menu {
    background-color: white;
}

.nav-wrap-phone .menu-wrap.active .menu::before {
    bottom: 0px;
    transform: rotate(-45deg);
}

.nav-wrap-phone .menu-wrap.active .menu::after {
    transform: rotate(45deg);
    top: 0px;
}

.nav-phone-wrap-left {
    background-color: white;
    position: fixed;
    z-index: 200;
    top: 0px;
    bottom: 0px;
    left: 0px;
    width: 0px;
    border-right: 1px solid #e3e3e3;
    overflow: hidden;
    transition: all .3s ease;
}

.nav-phone-wrap-left.active {
    width: 60%;
}

.nav-phone-item {
    display: flex;
    flex-direction: column;
    position: relative;
}

.nav-phone-item a {
    padding: 12px 10px;
    color: #333;
    text-decoration: none;
    font-size: 18px;
    word-break: keep-all;
}

.nav-phone-second-wrap {
    display: none;
    flex-direction: column;
    padding: 0px 15px;
}
.nav-phone-second-wrap.active{
    display: flex;
}

.nav-phone-second-wrap a {
    font-size: 16px;
    word-break: keep-all;
}

.more-btn-wrap {
    position: absolute;
    right: 0px;
    top: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    cursor: pointer;
    z-index: 100;
}

.more-btn-wrap::before,.more-btn-wrap::after{
    content: " ";
    position: absolute;
    background-color: #333;
    transition: all .3s ease;
}
.more-btn-wrap::before{
    height: 18px;
    width: 2px;
}
.more-btn-wrap::after{
    height: 2px;
    width: 18px;
}
.more-btn-wrap.active::before{
    transform: rotate(135deg);
}
.more-btn-wrap.active::after{
    transform: rotate(-45deg);
}

@media screen and (max-width:576px) {
    .c-page-nav {
        position: sticky;
        top: 0px;
        z-index: 100;
        left: 0px;
    }
}
@media screen and (min-width:576px) {
    .c-page-nav {
        position: sticky;
        top: 0px;
        z-index: 100;
        left: 0px;
    }
}
@media screen and (min-width:786px) {
    .c-page-nav {
        position: sticky;
        top: 0px;
        z-index: 100;
        left: 0px;
    }
}
@media screen and (min-width:992px) {
    .c-page-nav {
        position: relative;
    }
}
