@charset "utf-8";
/*头部导航栏*/
.jc-nav-top-bg {
    margin: 0 auto;
    width: 1140px;
    background: #0066FF
}
.jc-nav-top,
.jc-nav-top ul,
.jc-nav-top ul li,
.jc-nav-top ul li a {
    margin: 0;
    padding: 0;
    border: 0;
    list-style: none;
    line-height: 1;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    min-width: 100px;
}

#top_navs{
    display: flex;
    justify-content: space-between;
}

.jc-nav-top:after,
.jc-nav-top > ul:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.jc-nav-top {
    width: auto;
    background: #0066FF;
    z-index: 200;
}

.jc-nav-top > ul > li {
    float: left;
}
.jc-nav-top.align-center > ul {
    font-size: 16px;
    text-align: center;
}
.jc-nav-top.align-center > ul > li {
    display: inline-block;
    float: none;
}
.jc-nav-top.align-center ul ul {
    text-align: left;
}
.jc-nav-top.align-right > ul > li {
    float: right;
}
.jc-nav-top.align-right ul ul {
    text-align: right;
}
.jc-nav-top > ul > li > a {
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    color: #eee;
    -webkit-transition: color .2s ease;
    -moz-transition: color .2s ease;
    -ms-transition: color .2s ease;
    -o-transition: color .2s ease;
    transition: color .2s ease;
    border-right:1px solid #0066FF;
    line-height: 50px;
}
.jc-nav-top > ul > li:hover > a {
    color: #eee;
    background: #0066FF;
}
.jc-nav-top > ul > li.nav-has-sub > a {
    /*padding-right: 25px;*/
}
/*.jc-nav-top > ul > li.nav-has-sub > a::after {*/
    /*position: absolute;*/
    /*top: 20px;*/
    /*right: 10px;*/
    /*width: 4px;*/
    /*height: 4px;*/
    /*border-bottom: 1px solid #ba1c1c;*/
    /*border-right: 1px solid #ba1c1c;*/
    /*content: "";*/
    /*-webkit-transform: rotate(45deg);*/
    /*-moz-transform: rotate(45deg);*/
    /*-ms-transform: rotate(45deg);*/
    /*-o-transform: rotate(45deg);*/
    /*transform: rotate(45deg);*/
    /*-webkit-transition: border-color 2s ease;*/
    /*-moz-transition: border-color 2s ease;*/
    /*-ms-transition: border-color 2s ease;*/
    /*-o-transition: border-color 2s ease;*/
    /*transition: border-color 2s ease;*/
/*}*/
.jc-nav-top > ul > li.nav-has-sub:hover > a::after {
    border-color: #0066FF;
}
.jc-nav-top ul ul {
    position: absolute;
    left: -9999px;
}
.jc-nav-top > ul > li > ul {
    border-top: 1px solid #0066FF;
}
.jc-nav-top li:hover > ul {
    left: auto;
}
.jc-nav-top.align-right li:hover > ul {
    right: 0;
}
.jc-nav-top ul ul ul {
    margin-left: 100%;
    top: 0;
}
.jc-nav-top.align-right ul ul ul {
    margin-left: 0;
    margin-right: 100%;
}
.jc-nav-top ul ul li {
    height: 0;
    -webkit-transition: height .2s ease;
    -moz-transition: height .2s ease;
    -ms-transition: height .2s ease;
    -o-transition: height .2s ease;
    transition: height .2s ease;
}
.jc-nav-top ul li:hover > ul > li {
    height: 50px;
}
.jc-nav-top ul ul li a {
    background: #0066FF;
    text-decoration: none;
    color: #eeeeee;
    -webkit-transition: color .2s ease;
    -moz-transition: color .2s ease;
    -ms-transition: color .2s ease;
    -o-transition: color .2s ease;
    transition: color .2s ease;
    border-top: 1px solid #0066FF;
    border-bottom: 1px solid #0066FF;
    line-height: 50px;
    padding: 0 10px;
}
.jc-nav-top ul ul li:hover > a,
.jc-nav-top ul ul li a:hover {
    color: #eee;
    background: #0066FF;
    border-top: 1px solid #0066FF;
}
.jc-nav-top ul ul li.nav-has-sub > a::after {
    position: absolute;
    top: 25px;
    right: 10px;
    width: 4px;
    height: 4px;
    border-bottom: 1px solid #0066FF;
    border-right: 1px solid #0066FF;
    content: "";
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: border-color .5s ease;
    -moz-transition: border-color .5s ease;
    -ms-transition: border-color .5s ease;
    -o-transition: border-color .5s ease;
    transition: border-color .5s ease;
}
.jc-nav-top.align-right ul ul li.nav-has-sub > a::after {
    right: auto;
    left: 10px;
    border-bottom: 0;
    border-right: 0;
    border-top: 1px solid #dddddd;
    border-left: 1px solid #dddddd;
}
.jc-nav-top ul ul li.nav-has-sub:hover > a::after {
    border-color: #eee;
}