/*Common*/

/*TODO 暂时隐藏登录*/
#login_info{
    display: none;
}

/** 黑白 */
/**
html{
    -webkit-filter:grayscale(100%);
    -moz-filter:grayscale(100%);
    -ms-filter:grayscale(100%);
    -o-filter:grayscale(100%);
    filter:grayscale(100%);
    filter:url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1)
}
 */

body {
    /*font-family: "PingFang SC", "PingFangSC-Regular", "Microsoft Yahei", "SimHei", "Helvetica Neue", Helvetica, Arial, sans-serif!important;*/
    font-family: PingFangSC-Light ,PingFangSC-Regular, PingFang SC,Roboto, Helvetica Neue, Helvetica, Tahoma, Arial, PingFang SC-Light, Microsoft YaHei,sans-serif;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    /* -webkit-font-smoothing: antialiased; */
    /* IOS禁止微信调整字体大小 */
    -webkit-text-size-adjust: 100% !important;
    text-size-adjust: 100% !important;
    -moz-text-size-adjust: 100% !important;
}
a.btn,
button.btn{
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
    position: relative;
}
a.btn:focus,
button.btn:focus,
a.btn:active,
button.btn:active,
a.btn:visited,
button.btn:visited{
    outline: none!important;
    /*box-shadow: none!important;*/
    /*box-shadow: 0 2px 3px rgba(0 ,0 ,0 ,.4) inset, 0 1px 0 rgba(255 ,255 ,255 ,.1) !important;*/
}
a.btn:active,
button.btn:active{
    /*top:2px;*/
}
.icon-svg {
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
    fill: currentColor;
    overflow: hidden;
}

.content-sm {
    padding-top: 60px;
    padding-bottom: 60px;
}
a{text-decoration: none}
/**
 select框美化
*/
.select {
    position: relative;
    /*display: inline;*/
    color: #616263;
}

.select::after {
    font-family: "iconfont" !important;
    content: "\e6a9";
    position: absolute;
    right: 14px;
    top: 2px;
    font-size: 10px;
    z-index: 1;
    text-align: center;
    width: 10%;
    height: 100%;
    pointer-events: none;
    box-sizing: border-box;
}
.select select{
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance: none;
}
.select select::-ms-expand { display: none; }
.g-g .select{
    flex: 1;
}
.g-g .select::after{
    right: 12px;
}

@media screen and (max-width: 991px) {

    .g-g .select::after {
        right: 12px;

    }
    form .select::after {
        top: 20px !important;
    }

    form .form-group > .select {
        display: block;
        width: 100%;
        border-bottom: 1px solid #EDEDED;
    }
    form .form-group label {
        /*max-width: 80px!important;*/
    }
}
select {
    background-image: none;
    /*-webkit-appearance:initial;*/
    /*-moz-appearance: initial;*/
}

/*标签*/
.label-primary{
    background: rgba(0, 76, 255, 0.1);
    color: #004CFF!important;
    border-radius: 4px;
    font-weight: 400;
    line-height: inherit;
}
.label-warning {
    background: rgba(255, 95, 29, .1);
    border-radius: 4px;
    color: #FF5F1D!important;
    font-weight: 400;
    line-height: inherit;
}
.label-danger {
    background: rgba(255, 49, 38, 0.1);
    border-radius: 4px;
    color: #ff3126 !important;
    font-weight: 400;
    line-height: inherit;
}
.label-default {
    background: #F3F3F3;
    border-radius: 4px;
    color: #888;
    font-weight: 400;
    line-height: inherit;
}
/**
 滚动条美化
*/

/* Demos - Scrollbar 6 */
html, body {
    scrollbar-width: none;
    /*overflow: auto;*/
}
@media only screen and (min-width: 1024px){
    ::-webkit-scrollbar-thumb {
        background-color: #ccc;
        border-radius: 10px;
    }
    ::-webkit-scrollbar-thumb:hover{
        background-color:#9f9f9f;
        -webkit-border-radius:10px;
    }
    ::-webkit-scrollbar {
         width: 0;
         height: 0;
     }

    ::-webkit-scrollbar-track {
        background-color: rgba(0, 0, 0, 0);
        border-radius: 10px;
    }


}

input[type=number] {
    -moz-appearance:textfield;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.has-error .help-block,
.has-error .form-control-feedback{
    color: red;
}
.has-error  .form-control:focus{
    box-shadow: none;
}
.has-error .form-control{
    border-color: red!important;
}
/*.has-success .form-control {
    border-color: green!important;
}*/
.has-success .form-control:focus{
    border-color: #EDEDED;
    box-shadow: none;
}
.form-group {
    position: relative;
    margin-bottom: 25px;
}
.has-error .help-block {
    margin: 0 !important;
    position: absolute;
}
.form-control-feedback{
    height: 47px;
    line-height: 47px;
}
.has-feedback label~.form-control-feedback {
    top: 0;
}
form .btn:focus,
form .btn:active,
form .btn:visited {
    background: #0D5BD6;
    outline: none;
    box-shadow: none;
    color: #fff;
    border-color: #0D5BD6;
}

form select.form-control{
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
}
form .select::after{
    right: 0;
    top: 15px;
    height: 50%;
}
@media screen and (max-width: 991px) {
    form select.form-control{
        width: 90%;
        border: none!important;
    }
    .form-group{
        margin-bottom: 0;
    }
    .form-group.has-feedback.has-error,
    .form-group.has-error{
        margin-bottom: 15px!important;
    }
    .help-block {
        margin: 0;
        position: absolute;
    }
    .form-group .help-block {
        margin-bottom: 0;
        bottom: -20px;
        left: 70px;
        z-index: 999;
    }
    .form-group div >.help-block {
        bottom: auto;
        left: 0;
        margin-top: 5px;
    }
    .form-group .input-group {
        width: 100%;
    }
    .form-group .input-group.date input,
    .form-group .input-group.datetime input {
        height: 57px!important;
        margin-bottom: 0!important;
    }
    .form-group label{
        margin-bottom: 0!important;
    }
    .form-group input.form-control{
        margin-bottom: 0!important;
    }

}
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    background-color: #f5f5f5;
    opacity: 1;
}
.input-group.date .input-group-addon{
    border-radius: 0;
    border-color: #EDEDED;
}
.no-data {
    padding: 50px;
    text-align: center;
    font-size: 16px;
    display: none;
}

.no-data i {
    display: block;
    font-size: 55px;
    color: #bbb;
}

@media (max-width: 991px) {
    .no-data {
        padding: 50px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .content-sm {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    #carousel-banner {
        over-flow: auto;
        /* winphone8和android4+ */
        -webkit-overflow-scrolling: touch;
        /* ios5+ */
    }
}

@media (max-width: 991px) {
    /*h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    .h1,
    .h2,
    .h3,
    .h4,
    .h5,
    .h6 {
        line-height: 1.3;
    }
    .banner {
        min-height: 375px;
        background-size: cover;
    }
    p {
        font-size: 100% !important;
    }*/
    h1 {
        font-size: 150% !important;
        font-weight: 500;
    }
    h2 {
        font-size: 130% !important;
        font-weight: 500;
    }
    h2>a {
        font-size: 80% !important;
        height: auto!important;
        line-height: initial!important;
    }
    h3 {
        font-size: 140% !important;
    }
    h4 {
        font-size: 110% !important;
    }
    .sm-margin-bottom-50 {
        margin-bottom: 50px;
    }
    .sm-margin-bottom-20 {
        margin-bottom: 20px;
    }
    .conductor {
        height: 10px;
        width: 100%;
        background: #F2F2F2;
    }
}


.margin-bottom-10 {
    margin-bottom: 10px;
}

@media screen and (min-width: 992px) {
    .md-margin-top-70 {
        margin-top: 70px !important;
    }
}

.margin-top-50 {
    margin-top: 50px;
}

.margin-top-20 {
    margin-top: 20px;
}

.margin-bottom-50 {
    margin-bottom: 50px;
}

.padding-left-25 {
    padding-left: 25px;
}

.padding-right-25 {
    padding-right: 25px;
}

/*************************
     banner
*************************/
/*.banner {
    !* min-height: 830px; *!
    text-align: center;
    background-size: cover !important;
}

.banner .container h1 {
    color: #fff;
    font-size: 48px;
    line-height: 70px;
    font-weight: 500;
    display: inline-block;
    padding: 222px 0 20px 0;
}

.banner .container h1 strong {
    font-weight: 500;
    color: #0D5BD6;
}*/

.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 991px) {
    .container {
        width: 100%;
        padding-left: 15px!important;
        padding-right: 15px!important;
    }
}

@media (max-width: 1279px) {
    .container {
        /* width: 1190px; */
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1200px!important;
    }
}
/*@media (min-width: 1920px) {*/
/*    .container {*/
/*        width: 1400px!important;*/
/*    }*/
/*}*/
@media (max-width: 1440px) {
    .hide-in-1x {
        display: none!important;
    }
}

@media (min-width: 1441px) {
    .hide-in-2x {
        display: none!important;
    }
}

.justify-content-md-center {
    height: 100%;
    display: flex;
    align-items: center;
}
@media screen  and  (min-width: 1024px) {
    .justify-content-md-center > div {
        position: relative;
        height: 100%;
    }

    .justify-content-md-center > div >h1 {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
}
/*====移动端翻页====*/
@media screen  and  (max-width: 991px){
    .nav_pagination{text-align: center}
    .nav_pagination >div{
        display: flex;
    }
    .nav_pagination >div a{
        flex: 1;
        padding: 5px 10px!important;
        margin-right: 5px;
    }
}

/*========Header v6==============*/

.header .container {
    padding-left: 15px;
    padding-right: 15px;
}

.header-v6 {
    z-index: 99;
    position: relative;
}

@media (max-width: 991px) {
    .header-v6 {
        position: static;
    }
}


/*Containers
------------------------------------*/

.header-v6 .menu-container {
    /*width: 100%;*/
    width: 1200px;
    margin: 0 auto;
    /*padding: 0 7%;*/
}
/*.header-v6.header-normal .menu-container{*/
/*    width: 1400px;*/
/*    padding: 0;*/
/*}*/
@media (min-width: 768px) and (max-width: 991px) {
    .header-v6 .menu-container {
        width: 750px;
    }
}

@media (max-width: 991px) {
    .header-v6 .menu-container:before,
    .header-v6 .menu-container:after {
        content: " ";
        display: table;
    }
    .header-v6 .menu-container:after {
        clear: both;
    }
    .header-v6 .menu-container {
        position: relative;
        margin-left: auto;
        margin-right: auto;
        padding-left: 15px;
        padding-right: 15px;
        width: auto;
    }
    .header-v6 .main-menu{
        display: flex;
        margin: 0;
        padding: 0 5px;
    }
    .header-v6>.navbar>.container {
        width: inherit;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .header-v6>.navbar>.container>.navbar-header,
    .header-v6>.navbar>.container>.navbar-collapse {
        margin-left: 0;
        margin-right: 0;
    }
}

.header-v6 {
    /*Navbar*/
    /*Navbar Brand*/
}

.header-v6 .navbar {
    border: none;
    margin-bottom: 0;
    /*background: rgba(0, 0, 0, .64);*/
    position: relative;
    z-index: 2;
}

.header-v6 .navbar-brand {
    height: 60px;
    max-height: 60px;
    padding: 10px 0;
}
.header-v6 .navbar-brand >a{
    outline: none;
}
.header-v6 .navbar-btn {
    background-color: #0D5BD6 !important;
    border-color: #0D5BD6 !important;
    color: #ffffff !important;
    border-radius: 100px;
    padding: 6px 24px;
}

.header-v6 .navbar-brand img {
    /* width: auto;
    height: auto; */
    max-width: 100%;
    max-height: 100%;
    display: inline-block;
    vertical-align: middle;
    float: none;
    text-align: center;
}

@media (min-width:992px) {
    .header-v6 .navbar-brand img {
        transition: all .6s;
    }
    /*.header-v6 .navbar-brand img:hover {*/
    /*    transform: scale(1.1);*/
    /*}*/
}

.header-v6 .navbar-brand img.shrink-logo {
    /*display: inherit;*/
    display: none;
}

.header-v6 .navbar-brand img.default-logo {
    /*display: none;*/
    display: inherit;
}


/*Media Queries*/

@media (max-width: 991px) {
    .header-v6 .navbar-brand {
        padding-top: 20px;
    }
    .header-v6 .navbar-brand {
        height: 50px;
        max-height: 50px;
        line-height: 30px;
        padding: 10px 0 !important;
        display: inline-block;
        text-align: center;
        margin: 0 auto;
    }
    .header-v6 .navbar-brand img.shrink-logo {
        display: none;
    }
    .header-v6 .navbar-brand img.default-logo {
        display: inherit;
    }
    .header-v6.header-fixed-shrink .navbar-brand img.shrink-logo {
        display: inherit;
    }
    .header-v6.header-fixed-shrink .navbar-brand img.default-logo {
         display: none;
    }
    .header-v6.header-fixed-shrink .header-inner-right>div{
        color: #000;
    }
}


/*Nav Location*/

.header-v6  .nav-location {
    float: left;
    display: inline-block;
    height: 60px;
    line-height: 60px;
    padding-left: 20px;

}
.header-v6  .nav-location .dropdown-toggle{
height: 28px;
    border-radius: 14px;
    background-color: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    white-space: nowrap;
    border: none;
    padding: 5px 10px;
}

/*Navbar Toggle*/

.header-v6 .navbar-toggle {
    border: none;
    margin: 31px 0 31px 15px;
}

.header-v6 .navbar-toggle .icon-bar {
    height: 1px;
    width: 20px;
    font-size: 20px;
    background: #222;
    margin-bottom: 5px;
}

.header-v6 .navbar-toggle .icon-bar:last-child {
    margin-bottom: 0;
}

.header-v6 .navbar-toggle,
.header-v6 .navbar-toggle:hover,
.header-v6 .navbar-toggle:focus {
    background: inherit;
}


/*Navbar Collapse*/

.header-v6 .navbar-collapse {
    position: relative;
}


/*Navbar Menu*/

.header-v6 .navbar-nav>li>a {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.header-v6 .nav>li>a:hover,
.header-v6 .nav>li>a:focus {
    background: inherit;
}

@media (min-width: 992px) {
    .navbar {
        border-radius: 0;
    }
    .header-v6 .navbar-nav {
        /*float: right;*/
        margin-left: 50px;
    }
}


/*--------------------------------------------------
	[2. Header - Menu Inner Right Style]
----------------------------------------------------*/


/*Menu Inner Right
------------------------------------*/

.header-v6 .header-inner-right {
    float: right;
    z-index: 999;
    margin-left: -20px;
    position: relative;
    line-height: 60px;
    height: 60px;
}

.header-v6 .header-inner-right>div {
    display: inline-block;
    position: initial;
    color: #fff;
}

.header-v6 .header-inner-right a {
    color: #fff;
    font-size: 20px;
    display: inline-block;
    text-align: center;
    padding: 0 10px;
}

.header-v6 .header-inner-right a:hover {
    /*color: #0D5BD6!important;*/
   /*border-bottom: 3px #0D5BD6 solid;*/
    background: #f6f7f81f;
}

.header-v6 .header-inner-right select {
    background: transparent;
    border: none;
    box-shadow: none;
    color: #fff;
    font-size: 18px;
    width: 70px;
    margin-left: 10px;
    /*height: auto;*/

    display: inline-block;
}
@media screen and (min-width: 991px){
    .header-v6 .header-inner-right select {
        height: 60px;
        cursor:pointer;
    }
}
.header-v6 .header-inner-right select option{
    background: #fff;
    color: #333;
}
/*PC 字体统一19px*/
.header-v6 .header-inner-right a,
.header-v6 .header-inner-right a i,
.header-v6 .header-inner-right select,
.header-fixed .header-v6.header-fixed-shrink .header-inner-right a,
.header-v6 .navbar-nav>li>a{
    /*font-size: 19px!important;*/
    font-size: 15px!important;
    font-family: PingFangSC-Regular;
}

@media (max-width: 991px) {
    .header-v6 .header-inner-right {
        float: right;
        z-index: 999;
        position: relative;
        padding: 0;
        margin-right: 0;
        line-height: 50px;
        height: 50px;
    }
    .header-v6 .nav-location{
        line-height: 50px;
    }
    .header-v6 .navbar-toggle .icon-bar {
        background: #fff;
    }
    .header-v6.header-normal .navbar-toggle .icon-bar {
        background: #222;
    }

    .header-v6 .header-inner-right a {
        width: 30px;
        padding: 0;
    }
    .header-v6 .header-inner-right a:hover {
        color: #fff;
    }
    .header-v6 .header-inner-right select {
        font-size: 16px;
        width: 60px;
        margin-left: 0;
        -webkit-appearance: none;
        -moz-appearance: none;
    }
    /*移动端 字体统一16px*/
    .header-v6 .header-inner-right a,
    .header-v6 .header-inner-right a i,
    .header-v6 .header-inner-right select,
    .header-fixed .header-v6.header-fixed-shrink .header-inner-right a,
    .header-v6 .navbar-nav>li>a{
        font-size: 16px!important;
    }
    .header-fixed .header-v6.header-dark-scroll.header-fixed-shrink .navbar-toggle .icon-bar {
        background: #222!important;
    }
    .header-fixed .header-v6.header-dark-scroll.header-fixed-shrink .header-inner-right a {
        color: #222;
    }
    .header-fixed .header-v6.header-dark-scroll.header-fixed-shrink .header-inner-right select {
        color: #222;
        -webkit-appearance: none;
        -moz-appearance: none;
    }
}

@media (max-width: 350px) {
    .header-v6 .header-inner-right {
        display: none;
    }
}

.header-v6 .menu-icons-list {
    margin: 0;
    list-style: none;
}

.header-v6 li.menu-icons {
    position: relative;
    display: inline-block;
}

.header-v6 li.menu-icons:first-child {
    padding-right: 15px;
}

.header-v6 li.menu-icons i.menu-icons-style {
    color: #fff;
    width: 25px;
    cursor: pointer;
    font-size: 16px;
    line-height: 77px;
    text-align: center;
    display: inline-block;
}

.header-v6 li.menu-icons span.badge {
    top: 28px;
    left: 12px;
    color: #fff;
    width: 18px;
    height: 18px;
    padding: 4px;
    display: block;
    font-size: 11px;
    text-align: center;
    position: absolute;
    background: #ff6200;
    display: inline-block;
    border-radius: 50% !important;
}


/*--------------------------------------------------
[3. Header - Responsive Navbar Style]
----------------------------------------------------*/


/*Responsive Navbar*/

@media (max-width: 991px) {
    /*Responsive code for max-width: 991px*/
    .header-v6 .navbar-header {
        float: none;
    }
    .header-v6 .navbar-toggle {
        display: block;
        border: none;
        margin: 10px 0;
        width: 30px;
        height: 30px;
        color: #222;
         position: inherit;
        /* right: 0;*/
        }
        .header-v6 .navbar-collapse {
            border-color: #eee;
            border-bottom: 1px solid #eee;
        }
        .header-v6 .navbar-collapse.collapse {
            display: none !important;
            background: #fff;
            height: calc(100% - 50px);
        }
        .header-v6 .navbar-collapse .menu-container {
            background: #fff;
            height: 100%;
        }
        .header-v6 .navbar-collapse.collapse.in {
            display: block !important;
            overflow-y: auto !important;
            height: calc(100% - 50px);
            /*height: 100%;*/
        background: #fff;
        /*position: fixed;*/
        width: 100%;
        z-index: 999;
    }
    .header-v6 .navbar-nav {
        margin: 0;
        float: none !important;
    }
    .header-v6 .navbar-nav>li {
        float: none;
    }
    .header-v6 .navbar-nav>li>a {
        padding-top: 30px;
        padding-bottom: 40px;
    }
    /*Navbar Nav*/
    .header-v6 .navbar-nav>li>a {
        color: #444;
    }
    /*Pull Right*/
    .header-v6 .dropdown-menu.pull-right {
        float: none !important;
    }
    /*Dropdown Menu Slide Down Effect*/
    .header-v6 .navbar-nav .open .dropdown-menu {
        border: 0;
        float: none;
        width: auto;
        margin-top: 0;
        position: static;
        box-shadow: none;
        background-color: transparent;
    }
    .header-v6 .navbar-nav .open .dropdown-menu>li>a,
    .header-v6 .navbar-nav .open .dropdown-menu .dropdown-header {
        padding: 5px 15px 5px 25px;
    }
    .header-v6 .navbar-nav .open .dropdown-menu>li>a {
        line-height: 20px;
    }
    .header-v6 .navbar-nav .open .dropdown-menu>li>a:hover,
    .header-v6 .navbar-nav .open .dropdown-menu>li>a:focus {
        background-image: none;
    }
    .header-v6 .navbar-nav .open .dropdown-menu>li>a {
        color: #777;
    }
    .header-v6 .navbar-nav .open .dropdown-menu>li>a:hover,
    .header-v6 .navbar-nav .open .dropdown-menu>li>a:focus {
        color: #0D5BD6;
        background-color: transparent;
    }
    .header-v6 .navbar-nav .open .dropdown-menu>.active>a,
    .header-v6 .navbar-nav .open .dropdown-menu>.active>a:hover,
    .header-v6 .navbar-nav .open .dropdown-menu>.active>a:focus {
        color: #0D5BD6;
        background-color: transparent;
    }
    .header-v6 .navbar-nav .open .dropdown-menu>.disabled>a,
    .header-v6 .navbar-nav .open .dropdown-menu>.disabled>a:hover,
    .header-v6 .navbar-nav .open .dropdown-menu>.disabled>a:focus {
        color: #0D5BD6;
        background-color: transparent;
    }
    .header-v6 .dropdown-menu.no-bottom-space {
        padding-bottom: 0;
    }
    /*Design for max-width: 991px*/
    .header-v6 .navbar-collapse,
    .header-v6 .navbar-collapse .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .header-v6 .navbar-nav>li>a {
        font-size: 14px;
        padding: 12px 5px;
        font-family: PingFangSC-Medium, PingFang SC;
        font-weight: 500;
    }
    .header-v6 .navbar-nav>li a {
        border-top: none;
        border-bottom: 1px solid #eee;
    }
    .header-v6 .navbar-nav>li:first-child>a {
        border-top: transparent;
    }
    .header-v6 .navbar-nav>li>a:hover {
        color: #0D5BD6;
        border-color: #0D5BD6;
    }
    .header-v6 .navbar-nav>.open>a,
    .header-v6 .navbar-nav>.open>a:hover,
    .header-v6 .navbar-nav>.open>a:focus {
        color: #222;
        background: inherit;
    }
    .header-v6 .navbar-nav>.active>a,
    .header-v6 .navbar-nav>.active>a:hover,
    .header-v6 .navbar-nav>.active>a:focus {
        background: inherit;
        color: #0D5BD6 !important;
    }
    .header-v6 .dropdown .dropdown-submenu>a {
        font-size: 13px;
        color: #222 !important;
        text-transform: uppercase;
    }
}

@media (min-width: 992px) {
    /*Navbar Collapse*/
    .header-v6 .navbar-collapse {

        padding: 0;
    }
    /*Navbar*/
    .header-v6 .navbar {
        min-height: 40px !important;
    }
    .header-v6 .container>.navbar-header,
    .header-v6 .container-fluid>.navbar-header,
    .header-v6 .container>.navbar-collapse,
    .header-v6 .container-fluid>.navbar-collapse {
        margin-bottom: -10px;
    }
    .header-v6 .navbar-nav {
        top: 2px;
        position: relative;
    }
    .header-v6 .navbar-nav>li {
        /* padding: 18px 35px; */
        padding: 0;
        margin: 0px;
    }
    .header-v6 .navbar-nav>li>a {
        padding: 20px 25px;
        /*padding: 32px 15px;*/
        /*margin-bottom: 6px;*/
    }
    .header-v6 .navbar-nav>li>a,
    .header-v6 .navbar-nav>li>a:hover,
    .header-v6 .navbar-nav>li>a:focus,
    .header-v6 .navbar-nav>.active>a,
    .header-v6 .navbar-nav>.active>a:hover,
    .header-v6 .navbar-nav>.active>a:focus {
        color: #fff;
        font-weight: 500;
        background: none;
    }
    .header-v6 .navbar-nav>li>a:hover,
    .header-v6 .navbar-nav>li>a:focus,
    .header-v6 .navbar-nav>.active>a,
    .header-v6 .navbar-nav>.active>a:hover,
    .header-v6 .navbar-nav>.active>a:focus {
        /* color: #0D5BD6; */
        /* border-bottom: 3px #0D5BD6 solid; */
    }
    .header-v6 .navbar-nav>li>a {
        position: relative;
    }
    /* .header-v6 .navbar-nav>li>a::after, */
    .header-v6 .navbar-nav>li>a:hover::after,
    .header-v6 .navbar-nav>li>a:focus::after,
    .header-v6 .navbar-nav>.active>a::after,
    .header-v6 .navbar-nav>.active>a:hover::after,
    .header-v6 .navbar-nav>.active>a:focus::after {
        content: " ";
        position: absolute;
        width: auto;
        height: 3px;
        background: #0D5BD6;
        display: block;
        bottom: 15px;
        left: 0;
        right: 0;
        margin: 0 25px;
    }
    .header-v6 .navbar-nav>.open>a,
    .header-v6 .navbar-nav>.open>a:hover,
    .header-v6 .navbar-nav>.open>a:focus {
        color: #fff;
    }
    /*Dropdown Menu*/
    .header-v6 .dropdown-menu {
        border: none;
        padding: 0;
        margin: 0;
        min-width: 230px;
        border-radius: 0;
        background: #fff;
        z-index: 9999 !important;
        /*border-top: solid 3px #ff6200;*/
        box-shadow: 0px 15px 15px 0px rgba(0, 0, 0, 0.175) !important;
    }
    .header-v6 .dropdown-menu li a {
        color: #777;
        font-size: 13px;
        font-weight: 400;
        padding: 6px 25px;
    }
    .header-v6 .dropdown-menu .active>a,
    .header-v6 .dropdown-menu li>a:hover {
        color: #0D5BD6;
        background: inherit;
        filter: none !important;
        transition: all 0.1s ease-in-out;
    }
    .header-v6 .dropdown-menu li>a:focus {
        background: none;
        filter: none !important;
    }
    .header-v6 .navbar-nav>li.dropdown:hover>.dropdown-menu {
        /* display: block; */
        /* -webkit-transition: max-height .35s ease-in-out;
        -moz-transition: max-height .35s ease-in-out;
        -o-transition: max-height .35s ease-in-out;
        transition: max-height .35s ease-in-out;
        overflow: hidden;
        max-height: 488px; */
    }
    .header-v6 .open>.dropdown-menu {
        /* display: none; */
        /* max-height: 0; */
    }
}

@media (min-width: 992px) and (max-width: 1279px){
    .header-v6 .navbar-nav>li>a {
        padding: 20px 10px!important;
    }
    .header-v6 .menu-container{
        padding: 0 3%;
        width: 100%;
    }
}
/*--------------------------------------------------
[4. Header - Submenu]
----------------------------------------------------*/


/*Dropdown Submenu for BS3
------------------------------------*/

.header-v6 .dropdown-submenu {
    position: relative;
}

.header-v6 .dropdown-submenu>a:after {
    top: 9px;
    right: 15px;
    font-size: 11px;
    content: "\f105";
    position: absolute;
    font-weight: normal;
    display: inline-block;
    font-family: FontAwesome;
}

@media (max-width: 991px) {
    .header-v6 .dropdown-submenu>a:after {
        content: " ";
    }
}

.header-v6 .dropdown-submenu>.dropdown-menu {
    top: -20px;
    left: 100%;
    margin-left: 0px;
}


/*Submenu comes from LEFT side*/

.header-v6 .dropdown-submenu>.dropdown-menu.submenu-left {
    left: -100%;
}

.header-v6 .dropdown-submenu:hover>.dropdown-menu {
    /* display: block; */
}

@media (max-width: 991px) {
    .header-v6 .dropdown-submenu>.dropdown-menu {
        display: block;
        margin-left: 15px;
    }
}

.header-v6 .dropdown-submenu.pull-left {
    float: none;
}

.header-v6 .dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
}

.header-v6 .dropdown-menu li [class^="fa-"],
.header-v6 .dropdown-menu li [class*=" fa-"] {
    left: -3px;
    width: 1.25em;
    margin-right: 1px;
    position: relative;
    text-align: center;
    display: inline-block;
}

.header-v6 .dropdown-menu li [class^="fa-"].fa-lg,
.header-v6 .dropdown-menu li [class*=" fa-"].fa-lg {
    /* increased font size for fa-lg */
    width: 1.5625em;
}


/*--------------------------------------------------
[5. Header - Mega Menu]
----------------------------------------------------*/


/*Mega Menu
------------------------------------*/

.header-v6 .mega-menu .nav,
.header-v6 .mega-menu .dropup,
.header-v6 .mega-menu .dropdown,
.header-v6 .mega-menu .collapse {
    position: static;
}

.header-v6 .mega-menu .navbar-inner,
.header-v6 .mega-menu .container {
    position: relative;
    z-index: 2;
}

.header-v6 .mega-menu .dropdown-menu {
    left: auto;
}

.header-v6 .mega-menu .dropdown-menu>li {
    /* display: block; */
}

.header-v6 .mega-menu .dropdown-submenu .dropdown-menu {
    left: 100%;
}

.header-v6 .mega-menu .nav.pull-right .dropdown-menu {
    right: 0;
}

.header-v6 .mega-menu .mega-menu-content {
    *zoom: 1;
    padding: 0;
}

.header-v6 .mega-menu .mega-menu-content:before,
.header-v6 .mega-menu .mega-menu-content:after {
    content: "";
    display: table;
    line-height: 0;
}

.header-v6 .mega-menu .mega-menu-content:after {
    clear: both;
}

.header-v6 .mega-menu.navbar .nav>li>.dropdown-menu:after,
.header-v6 .mega-menu.navbar .nav>li>.dropdown-menu:before {
    display: none;
}

.header-v6 .mega-menu .dropdown.mega-menu-fullwidth .dropdown-menu {
    left: 0;
    right: 0;
    overflow: hidden;
}

@media (min-width: 992px) {
    .header-v6 .mega-menu .dropdown.mega-menu-fullwidth .dropdown-menu {
        margin-left: 0;
        margin-right: 0;
        border-top: 1px solid #ececec;
    }
}


/*Equal Height Lists*/

@media (min-width: 992px) and (max-width: 1359px) {
    .header-v6 .navbar-nav {
        margin-left: 40px;
    }
    .header-v6 .navbar-nav>li {
        /* padding: 18px 15px; */
        padding: 0;
    }
    .header-v6 .mega-menu .equal-height {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
    .header-v6 .mega-menu .container {
        width: 90%!important;
    }
    .header-v6 .mega-menu .equal-height-in {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

@media (min-width: 1360px) {
    .header-v6 .mega-menu .equal-height {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
    .header-v6 .mega-menu .container {
        width: 82%!important;
    }
    .header-v6 .mega-menu .equal-height-in {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}


/*Mega Menu Style Effect*/

.header-v6 .mega-menu .equal-height-list h3 {
    color: #222;
    font-size: 16px;
    font-weight: 500;
    padding: 0 10px 0 20px;
    text-transform: uppercase;
}


/*Space for only Big Resolution*/

@media (min-width: 992px) {
    .header-v6 .mega-menu .big-screen-space {
        margin-bottom: 20px;
    }
}


/*Mega Menu Content*/

@media (min-width: 992px) {
    .header-v6 .mega-menu .equal-height-in {
        padding: 20px 0;
        border-left: 1px solid #ECECEC;
    }
    .header-v6 .mega-menu .equal-height-in:first-child {
        border-left: none;
        margin-left: -1px;
    }
    .header-v6 .mega-menu .equal-height-list {
        width: 100%;
        padding-left: 10px;
    }
    .header-v6 .mega-menu .equal-height-list li {
        padding-right: 10px;
    }
    .header-v6 .mega-menu .equal-height-list li.col-md-6 {
        padding-left: 0;
    }
    .header-v6 .mega-menu .equal-height-list li a {
        display: block;
        position: relative;
        border-bottom: none;
        padding: 5px 10px 5px 15px;
    }
    .header-v6 .mega-menu .equal-height-list a:hover {
        text-decoration: none;
    }
    /*Dropdown Arrow Icons*/
    .header-v6 .mega-menu .mega-menu-fullwidth li a {
        padding: 5px 10px 5px 30px;
    }
    .header-v6 .mega-menu .mega-menu-fullwidth li a:after {
        top: 7px;
        left: 15px;
        font-size: 11px;
        content: "\f105";
        position: absolute;
        font-weight: normal;
        display: inline-block;
        font-family: FontAwesome;
    }
    /*Dropdown Arrow Icons Disable class*/
    .header-v6 .mega-menu .mega-menu-fullwidth .disable-icons li a {
        padding: 15px 10px;
        display: flex;
    }
    .header-v6 .mega-menu .mega-menu-fullwidth .disable-icons li a .icon-svg {
        vertical-align: middle;
        font-size: 42px;
    }
    .header-v6 .mega-menu .mega-menu-fullwidth .disable-icons li a p {
        display: inline-block;
        vertical-align: middle;
        padding-left: 16px;
        margin: 0;
    }
    .header-v6 .mega-menu .mega-menu-fullwidth .disable-icons li a p span:first-child {
        display: block;
        font-size: 14px;
        font-weight: 400;
        color: #222;
    }
    .header-v6 .mega-menu .mega-menu-fullwidth .disable-icons li a p span:last-child {
        color: #666666;
        font-size: 12px;
    }
    .header-v6 .mega-menu .mega-menu-fullwidth .disable-icons li a:hover {
        border: none!important;
        color: #4A4A4A!important;
        background: #F6F7F8!important;
    }
    .header-v6 .mega-menu .mega-menu-fullwidth .disable-icons li a:after {
        display: none;
    }
}

@media (min-width: 1200px) {
    .header-v6 .mega-menu .equal-height-list {
        width: 100%;
        padding-left: 30px;
    }
    .header-v6 .mega-menu .equal-height-list li {
        padding-right: 30px;
    }
    .header-v6 .mega-menu .equal-height-list li.col-md-6 {
        padding-left: 0;
    }
    .header-v6 .mega-menu .mega-menu-fullwidth .disable-icons li a {
        padding: 15px 20px;
    }
}

@media (min-width: 1440px) {
    .header-v6 .mega-menu .equal-height-list {
        width: 100%;
        padding-left: 50px;
    }
    .header-v6 .mega-menu .equal-height-list li {
        /* padding-right: 50px; */
    }
    .header-v6 .mega-menu .equal-height-list li.col-md-6 {
        padding-left: 0;
    }
}


/*Space Effect inside the container to avoid scroll bar*/

@media (min-width: 737px) and (max-width: 991px) {
    .header-v6 .mega-menu .mega-menu-content .container {
        width: 690px !important;
    }
    .header-v6 .mega-menu .equal-height {
        margin-right: 0;
    }
    .header-v6 .mega-menu .equal-height-in {
        padding-right: 0;
        margin-right: -15px;
    }
}

@media (max-width: 991px) {
    .header-v6 .mega-menu .equal-height {
        margin-right: 0;
    }
    .header-v6 .mega-menu .equal-height-in {
        padding-right: 0;
        padding-left: 25px;
    }
    .header-v6 .mega-menu .mega-menu-fullwidth .disable-icons li.col-md-6 {
        padding: 0;
    }
    .header-v6 .mega-menu .mega-menu-fullwidth .disable-icons li a i {
        vertical-align: middle;
        font-size: 32px;
    }
    .header-v6 .mega-menu .mega-menu-fullwidth .disable-icons li a p {
        display: inline-block;
        vertical-align: middle;
        padding-left: 16px;
        margin: 0;
    }
    .header-v6 .mega-menu .mega-menu-fullwidth .disable-icons li a p span:first-child {
        display: block;
        font-size: 14px;
        font-weight: 400;
        color: #222;
    }
    .header-v6 .mega-menu .mega-menu-fullwidth .disable-icons li a p span:last-child {
        color: #666666;
        font-size: 12px;
    }
    .header-v6 .mega-menu .mega-menu-fullwidth .disable-icons li a:hover {
        border: none!important;
        color: #4A4A4A!important;
        background: #F6F7F8!important;
    }
}


/*Equal Hight List Style*/

@media (max-width: 991px) {
    .header-v6 .mega-menu .dropdown.mega-menu-fullwidth .dropdown-menu {
        width: auto;
    }
    .header-v6 .mega-menu .equal-height-in,
    .header-v6 .mega-menu .equal-height-list {
        display: block;
    }
    .header-v6 .mega-menu .mega-menu-fullwidth .dropdown-menu>li>ul {
        display: block;
    }
    /*Equal Height List Style*/
    .header-v6 .mega-menu .equal-height-list h3 {
        color: #222;
        margin: 0 0 5px;
        font-size: 13px;
        font-weight: 400;
        padding: 6px 15px 5px;
        font-size: 100% !important;
    }
    .header-v6 .mega-menu .equal-height-list li a {
        color: #777;
        display: block;
        font-size: 13px;
        font-weight: 400;
        margin-left: 15px;
        padding: 6px 25px;
    }
    .header-v6 .mega-menu .equal-height-list>h3.active,
    .header-v6 .mega-menu .equal-height-list>.active>a,
    .header-v6 .mega-menu .equal-height-list>.active>a:hover,
    .header-v6 .mega-menu .equal-height-list>.active>a:focus {
        color: #ff6200;
        background-color: transparent;
    }
    .header-v6 .mega-menu .equal-height-list li a:hover {
        color: #ff6200;
        text-decoration: none;
    }
    .header-v6 .mega-menu .mega-menu-fullwidth .disable-icons li a .icon-svg {
        vertical-align: middle;
        font-size: 22px;
    }
    .header-v6 .mega-menu .container {
        width: 100%;
    }
}


/*--------------------------------------------------
[6. Header - Fixed]
----------------------------------------------------*/


/*Header Fixed
------------------------------------*/


/*Media Queries*/

.header-fixed .header-v6.header-sticky {
    top: 0;
    left: 0;
    width: 100%;
    /*height: auto;*/
    z-index: 9999;
    position: fixed;
    background: #00000033;
}

@media (min-width: 992px) {
    /*Header Sticky*/
    .header-fixed .header-v6.header-sticky {
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        z-index: 9999;
        position: fixed;
    }
    .header-fixed .header-v6.header-fixed-shrink {
        border-bottom: none;
        box-shadow: 0 0 3px #bbb;
    }
    .header-fixed .header-v6.header-fixed-shrink .navbar {
        background: #fff;
    }
    /*Navbar*/
    .header-fixed .header-v6.header-fixed-shrink .navbar-nav>li>a {
        color: #555;
    }
    .header-fixed .header-v6.header-fixed-shrink .navbar-nav .active>a,
    .header-fixed .header-v6.header-fixed-shrink .navbar-nav li>a:hover {
        color: #ff6200;
    }
    /*Navbar Brand*/
    .header-fixed .header-v6.header-fixed-shrink .navbar-brand img.default-logo {
        display: none;
    }
    .header-fixed .header-v6.header-fixed-shrink .navbar-brand img.shrink-logo {
        display: inherit;
    }
    /*Menu Inner Right*/
    .header-fixed .header-v6.header-fixed-shrink li.menu-icons i.menu-icons-style {
        color: #555;
    }
    /*Transition*/
    .header-fixed .header-v6.header-fixed-shrink .navbar-brand,
    .header-fixed .header-v6.header-fixed-shrink .navbar-nav>li>a,
    .header-fixed .header-v6.header-fixed-shrink li.menu-icons i.menu-icons-style,
    .header-fixed .header-v6.header-fixed-shrink li.menu-icons span.badge,
    .header-fixed .header-v6.header-fixed-shrink .shopping-cart .shopping-cart-open,
    .header-fixed .header-v6.header-fixed-shrink .search-open .form-control {
        transition: all 0.4s cubic-bezier(0.7, 1, 0.7, 1);
    }
    /*Navbar Brand*/
    .header-fixed .header-v6.header-fixed-shrink .navbar-brand {
        height: 60px;
        max-height: 60px;
        /*line-height: 39px;*/
        padding: 15px 0;
    }
    .header-fixed .header-v6.header-fixed-shrink .header-inner-right {
        padding: 0;
    }
    .header-fixed .header-v6.header-fixed-shrink .header-inner-right select {
        color: #222;
        font-size: 16px;
    }
    .header-fixed .header-v6.header-fixed-shrink .header-inner-right>div.select{
        color: #222;
    }
    .header-fixed .header-v6.header-fixed-shrink .header-inner-right a {
        color: #222;
        font-size: 16px;
        display: block;
        /*width: 80px;*/
        text-align: center;
    }
    /*Navbar Nav*/
    .header-fixed .header-v6.header-fixed-shrink .navbar-nav>li>a {
        /*line-height: 50px;*/
    }
    /*Menu Icons*/
    .header-fixed .header-v6.header-fixed-shrink li.menu-icons i.menu-icons-style {
        line-height: 70px;
    }
    .header-fixed .header-v6.header-fixed-shrink li.menu-icons span.badge {
        top: 17px;
    }
    .header-fixed .header-v6.header-fixed-shrink .shopping-cart .shopping-cart-open {
        top: 70px;
    }
    /*Search*/
    .header-fixed .header-v6.header-fixed-shrink .search-open {
        border-bottom: 1px solid #eee;
    }
    .header-fixed .header-v6.header-fixed-shrink .search-open .form-control {
        height: 49px;
        font-size: 25px;
    }
}


/*Media Queries*/

@media (max-width: 991px) {
    /*Header*/
    .header-fixed .header-v6 {
        height: inherit;
        /*height: 100%;*/
        overflow: hidden;
    }
    .header-v6 .navbar {
        height: 100%;
    }
    .header-v6 .navbar>div {
        height: 100%;
    }
    .header-fixed .header-v6.header-fixed-shrink {
        height: inherit;
        /*position: relative;*/
        background: #fff;
        border-bottom: 1px solid #ccc;
    }
    /*Header Inner Right*/
    .header-fixed .header-v6.header-fixed-shrink .header-inner-right,
    .header-fixed .header-v6.header-fixed-shrink .menu-icons-list {
        margin-left: 0;
        /*margin-right: 20px;*/
    }
    /*Menu Icons*/
    .header-v6 li.menu-icons i.menu-icons-style {
        color: #555;
    }
}


/*--------------------------------------------------
  [6.1. Header - Fixed Boxed]
----------------------------------------------------*/

.boxed-layout.header-fixed .header-v6.header-sticky {
    left: inherit;
    width: inherit;
}


/*--------------------------------------------------
[10. Header - Dark On Scroll Option]
----------------------------------------------------*/


/*Media Queries*/

@media (min-width: 992px) {
    /*Header*/
    .header-v6{
        background-color: rgba(0, 0, 0, 0.2);
    }
    .header-fixed .header-v6.header-dark-scroll.header-fixed-shrink {
        box-shadow: none;
        background: #fff!important;
        border-bottom: 1px solid #ececec;
    }
    .header-fixed .header-v6.header-dark-scroll.header-fixed-shrink .navbar {
        background-color: inherit;
    }
    /*Navbar Brand*/
    .header-fixed .header-v6.header-dark-scroll.header-fixed-shrink .navbar-brand img.default-logo {
        /*display: inherit;*/
        display: none;
    }
    .header-fixed .header-v6.header-dark-scroll.header-fixed-shrink .navbar-brand img.shrink-logo {
        /*display: none;*/
        display: inherit;
    }
    /*Navbar*/
    .header-fixed .header-v6.header-dark-scroll.header-fixed-shrink .navbar-nav>li>a {
        color: #222222;
    }
    .header-fixed .header-v6.header-dark-scroll.header-fixed-shrink .navbar-nav .active>a,
    .header-fixed .header-v6.header-dark-scroll.header-fixed-shrink .navbar-nav li>a:hover {
        /*color: #0D5BD6;*/
        /* border-bottom: 3px #0D5BD6 solid; */
        /* background: #0d5bd614; */
    }
    .header-fixed .header-v6.header-dark-scroll.header-fixed-shrink li.menu-icons i.menu-icons-style {
        color: #fff;
    }
}

.header-v6.header-normal {
    width: 100%;
    /*background: #fff;*/
    /*border-bottom: 1px solid #ececec;*/
}

.header-v6.header-normal .navbar-brand img.shrink-logo {
    display: none;
}

.header-v6.header-normal .navbar-brand img.default-logo {
    display: inherit;
}

.header-v6.header-normal .navbar-nav>li>a,
.header-v6.header-normal .navbar-nav>li>a:hover,
.header-v6.header-normal .navbar-nav>li>a:focus,
.header-v6.header-normal .navbar-nav>.active>a,
.header-v6.header-normal .navbar-nav>.active>a:hover,
.header-v6.header-normal .navbar-nav>.active>a:focus {
    /*color: #222;*/
}

.header-v6.header-normal .navbar-nav>li>a:hover,
.header-v6.header-normal .navbar-nav>li>a:focus,
.header-v6.header-normal .navbar-nav>.active>a,
.header-v6.header-normal .navbar-nav>.active>a:hover,
.header-v6.header-normal .navbar-nav>.active>a:focus {
    /*color: #0D5BD6;*/
    /* border-bottom: 3px #0D5BD6 solid; */
    /* background: #0d5bd614; */
}

.header-v6.header-normal .header-inner-right a,
.header-v6.header-normal .header-inner-right select {
    /*color: #222;*/
    cursor: pointer;

    /*appearance:none;
    -webkit-appearance: none;
    -moz-appearance: none;*/
}
.header-v6.header-normal  .header-inner-right>div.select{
    /*color: #222;*/
}
.header-v6.header-normal .header-inner-right a:hover {
    color: #0D5BD6;
    /* border-bottom: 3px #0D5BD6 solid; */
    background: #0d5bd614;
    text-decoration: none;
}
.header-v6 .header-inner-right .user-info{
    display: none;
}
.header-v6 .header-inner-right .user-info ul{
    position: absolute;
    top: 0;
    left: -30px;
    z-index: 10;
    padding: 6px 0;
    border: 1px solid #ebebf5;
    margin: 0!important;
    -webkit-box-shadow: 0 4px 8px 0 rgba(0,0,0,.1);
    background: #fff;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,.2);
    border-radius: 2px;
    width: 150px;
    list-style: none;
}
.header-v6 .header-inner-right .user-info ul li{
    line-height: 40px;
    height: 40px;
}
.header-v6 .header-inner-right .user-info ul li:last-child{
    border-top: 1px solid #eaeaea;
}
.header-v6 .header-inner-right .user-info ul li a{
    color: #222;
    line-height: 40px;
    padding: 0 17px;
    font-size: 14px;
    display: block;
    width: 100%!important;
    text-align: center;
}
.header-v6 .header-inner-right .user-info ul li a:hover{
    background: rgba(13, 91, 214, 0.1);
    color: #0D5BD6;
}
.header-v6 .header-inner-right .user-info ul .arrow{
    border-width: 6px;
    -webkit-filter: drop-shadow(0 2px 12px rgba(0,0,0,.03));
    filter: drop-shadow(0 2px 12px rgba(0,0,0,.03));
}
.header-v6 .header-inner-right .user-info ul .arrow,
.header-v6 .header-inner-right .user-info ul .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;

}
.header-v6 .header-inner-right .user-info ul .arrow {
    top: -11px;
    left: 50%;
    margin-left: -11px;
    border-width: 11px;
    border-top-width: 0;
    border-bottom-color: #999;
    border-bottom-color: rgba(0,0,0,.25);
}
.header-v6 .header-inner-right .user-info ul .arrow:after {
    top: 1px;
    margin-left: -10px;
    content: " ";
    border-width: 10px;
    border-top-width: 0;
    border-bottom-color: #fff;

}
@media screen and (max-width:991px) {
    .header-v6.header-normal .navbar-nav>li>a:hover,
    .header-v6.header-normal .navbar-nav>li>a:focus,
    .header-v6.header-normal .navbar-nav>.active>a,
    .header-v6.header-normal .navbar-nav>.active>a:hover,
    .header-v6.header-normal .navbar-nav>.active>a:focus {
        border-bottom: 2px #0D5BD6 solid;
    }
    .header-v6.header-normal .header-inner-right a:hover {
        border-bottom: 2px #0D5BD6 solid;
    }
    .header-v6.header-normal {
        background: #fff;
    }
    .header-v6 .header-inner-right .user-info ul .arrow {
        display:none;
    }
}

/*PC端-集团模块通用导航*/
.header-custom{
    width: 100%;
    height: 48px;
    background: #1E3054;
}
.header-custom .navbar-nav{
    margin-left: 0;
}
.header-custom .navbar-nav>li>a{
    padding: 14px 50px 14px 0;
}
.header-custom .navbar-nav>li>a{
    font-size: 12px!important;
    font-weight: 400;
    color: #ADADAD;
}
.header-custom .navbar-nav>li>a:hover,
.header-custom .navbar-nav>li>a:focus,
.header-custom .navbar-nav>.active>a,
.header-custom .navbar-nav>.active>a:hover,
.header-custom .navbar-nav>.active>a:focus{
    font-size: 12px!important;
    color: #fff;
}
.header-custom .navbar-nav>li>a:hover::after,
.header-custom .navbar-nav>li>a:focus::after,
.header-custom .navbar-nav>.active>a::after,
.header-custom .navbar-nav>.active>a:hover::after,
.header-custom .navbar-nav>.active>a:focus::after{
    background: transparent;
}
.header-custom .header-inner-right a,
.header-custom .header-inner-right a i,
.header-custom .header-inner-right select,
.header-fixed .header-custom.header-fixed-shrink .header-inner-right a,
.header-custom .navbar-nav>li>a{
    font-size: 12px!important;
}
.header-custom .header-inner-right{
    height: 48px!important;
    line-height: 48px!important;
}
.header-custom .header-inner-right select{
    height: 48px!important;
}
@media (min-width: 992px) and (max-width: 1279px){
    .header-custom .navbar-nav>li>a {
        padding: 14px 20px!important;
    }
    .header-custom .menu-container{
        padding: 0;
        width: 100%!important;
    }
}

.zs-nav{
    position: relative;
    height: 80px;
    background: #fff;
    box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.03);
}
.zs-nav >div{
    display: flex;
}

/*Nav Location*/

.zs-nav  .nav-location {
    float: left;
    display: inline-block;
    height: 80px;
    line-height: 80px;
    padding-left: 20px;


}
.zs-nav  .nav-location .dropdown-toggle{
    height: 28px;
    border-radius: 14px;
    background: #F1F1F1;
    box-shadow: 0px 3px 16px 0px rgba(0, 0, 0, 0.03);
    color: #444;
    font-size: 14px;
    white-space: nowrap;
    border: none;
    padding: 5px 10px;
}
.zs-nav >div .zs-nav-right{
    width: 359px;
    float: right;
    height: 80px;
    line-height: 80px;
}
.zs-nav >div .zs-nav-right .input-group >input{
    height: 40px;
    background: #FFFFFF;
    box-shadow: 0px 1px 15px -6px rgba(218, 218, 218, 0.52);
    border-radius: 20px 0 0 20px;
    border: 1px solid #DADADA85;
    border-right: none;
    margin-top: 20px;
}
.zs-nav >div .zs-nav-right .input-group >input::placeholder{
    color: #888;
}
.zs-nav >div .zs-nav-right .input-group .input-group-btn{
}
.zs-nav >div .zs-nav-right .input-group .input-group-btn button{
    height: 40px;
    background: #FFFFFF;
    border-radius: 0 20px 20px 0;
    border-left: none;
    border-color: #DADADA85;
    box-shadow: 0px 1px 15px -6px rgba(218, 218, 218, 0.52);
    padding: 6px 20px;
    color: #5F5F5F;
}
.zs-nav >div .zs-nav-right .input-group .input-group-btn button:hover{
    color: #fff;
    background: linear-gradient( 142deg , #1B90FF 0%, #004CFF 100%);
}
.zs-nav .zs-tab{
    display: inline;
    line-height: 80px;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}
.zs-nav .zs-tab ul{
    display: inline-block;
    margin-bottom: 0;
}
.zs-nav .zs-tab ul li a{
    font-size: 18px;
    font-weight: 400;
    color: #000;
    padding: 0 30px;
    font-family: PingFangSC-Regular, PingFang SC;
    line-height: 25px;
}
.zs-nav .zs-tab ul li a:hover,
.zs-nav .zs-tab ul li.active a{
    color: #004CFF;
    font-weight: 600;
    position: relative;
    text-decoration: none;
}
.zs-nav .zs-tab ul li.active a::after{
    content: " ";
    position: absolute;
    width: auto;
    height: 3px;
    border-radius: 2px;
    background: #004CFF;
    display: block;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: 0 35px;
}
.zs-nav-header {
    display: inline-block;
}
.zs-nav-header .zs-nav-brand{
    float: left;
    height: 80px;
    line-height: 80px;
}
.zs-nav-header .point{
    display: inline-block;
    width: 5px;
    height: 5px;
    background: #000;
    border-radius: 50%;
    line-height: 80px;
    margin: 0 10px;
    vertical-align: middle;
}
.zs-nav-header span{
    display: inline-block;
    line-height: 80px;
    font-size: 18px;
    font-weight: 500;
    font-family: PingFangSC-Medium, PingFang SC;
    color: #000000;
}
/*移动端-集团模块通用导航*/
@media screen and (max-width: 991px){
    .header-custom{
        position: fixed;
        height: auto;
        background: #fff;
        z-index: 9999;
        box-shadow: 0px 3px 10px 0px #0000000d;

    }
    .header-custom .container>div{
        display: flex;
        height: 48px;
    }
    .header-custom .container >div{
        display: flex;
        line-height: 48px;
        overflow: hidden;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    .header-custom .container >div >a,
    .header-custom .container >div >a i{
        font-size: 20px;
        font-weight: 600;
        line-height: 48px;
        padding: 0;
        color: #000;
        width: 50px;
        text-align: left;
    }
    .header-custom .container .zs-nav-header .point {
        display: inline-block;
        width: 4px;
        height: 4px;
        background: #000;
        border-radius: 50%;
        margin: 0 5px;
        vertical-align: middle;
    }
    .header-custom .container h1{
        display: inline-block;
        padding: 0;
        margin: 0;
        line-height: 48px;
        font-size: 16px!important;
        font-family: PingFangSC-Medium, PingFang SC;
        font-weight: 500;
        color: #000000;
    }
    .header-custom .navbar-toggle{
        padding: 0;
        margin: 0;
        height: 48px;
        line-height: 48px;
        font-size: 14px;
        font-family: PingFangSC-Regular, PingFang SC;
        font-weight: 400;
        background: transparent;
        color: #000000;
        border: none;
    }

    .header-custom .navbar-toggle i{font-size: 12px;font-weight: 600}
    .header-custom .navbar-collapse{
        background: #fff;
    }
    .header-custom .navbar-nav>li>a:hover,
    .header-custom .navbar-nav>li>a:focus,
    .header-custom .navbar-nav>.active>a,
    .header-custom .navbar-nav>.active>a:hover,
    .header-custom .navbar-nav>.active>a:focus{
        font-size: 14px!important;
        font-weight: bold;
        color: #004cff;
        background: #fff;
    }
    .header-custom .navbar-nav>li>a{
        color: #333;
    }

}
