/*   标题导航栏CSS文件   */

/* 手机 */
@media (min-width: 10px) {
    /* 页面内容体容器 */
    .c-page-wrap {
        width: 95%;
    }

    /* 标题栏 */
    .c-title-bar {
        padding-left: 3%;
        padding-right: 3%;
    }

    /* 导航菜单、联系方式 */
    .v-navi-bar, .v-phone-area {
        display: none;
    }

    /* 更多菜单 */
    .v-menu-more {
        display: flex;
    }

    .u-menu-more {
        font-size: 26px;
    }
}

/* 平板电脑 */
@media (min-width: 1000px) {
    /* 页面内容体容器 */
    .c-page-wrap {
        width: 90%;
    }

    /* 标题栏 */
    .c-title-bar {
        padding-left: 3%;
        padding-right: 3%;
    }

    /* 导航菜单、联系方式 */
    .v-navi-bar, .v-phone-area {
        display: flex;
    }

    /* 更多菜单 */
    .v-menu-more {
        display: none;
    }

    .u-menu-more {
        font-size: 30px;
    }
}

/* PC */
@media (min-width: 1400px) {
    /* 页面内容体容器 */
    .c-page-wrap {
        width: 80%;
    }

    /* 标题栏 */
    .c-title-bar {
        padding-left: 10%;
        padding-right: 10%;
    }

    .u-menu-more {
        font-size: 30px;
    }
}

/* 页面容器 */
.p-page-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
}

/* LOGO栏容器 */
.c-title-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /*height: 100px;*/
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 99999;
}

/* 导航菜单 */
.m-navi-bar {
    padding-top: 15px;
    margin-left: 20px;
}

/* 导航菜单项 */
.u-navi-btn {
    margin: 0 12px;
}

/* 导航菜单项（文本） */
.u-navi-btn > span {
    font-size: 18px;
    color: #666;
}

/* 导航菜单项（下划线） */
.u-navi-btn > div {
    margin-top: 15px;
    width: 30px;
}

/* 导航菜单项（鼠标经过） */
.u-navi-btn :hover {
    cursor: pointer;
}

/* 咨询热线区域 */
.m-phone-area {
    margin-left: 20px;
    display: flex;
    flex-direction: column;
}

/* 咨询热线（图标样式） */
.c-phone-logo {
    font-size: 40px;
    color: #0c84ff;
    /*margin-bottom: 30px;*/
}

/* 咨询热线（号码样式） */
.c-phone-text {
    font-weight: bold;
    font-size: 22px;
    color: #338DE6;
    line-height: 26px;
}

/* 更多菜单（图标） */
.u-menu-more {
    color: #0c84ff;
}

/* 更多菜单(可链接) */
.u-menu-more:hover {
    cursor: pointer;
}

/* 导航栏（下拉菜单） */
.u-menu-popper {
    width: 40%;
    text-align: center;
}

/* 导航栏（下拉菜单-文本） */
.u-menu-popper > a {
    line-height: 50px;
}