/* 公共头部 */
body {
    padding-top: 90px;
    min-width: 1200px;
}

.mid {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.mid:after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.pub-header {
    height: 90px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 10;
    background-color: #fff;
}

.pub-header .logo {
    float: left;
    width: 181px;
    height: 31px;
    position: relative;
    margin-top: 30px;
}

.pub-header .logo img {
    display: block;
    width: 100%;
    height: 100%;
}

.pub-header .fun-box {
    height: 90px;
    position: relative;
    float: right;
    display: flex;
    align-items: center;
}
.pub-header .nav{
    float: left;
    position: relative;
}
.pub-header .nav .subline{
    height: 5px;
    background: #00255B;
    position: absolute;
    bottom: 0;
    left: 0;
}
.pub-header .nav ul{
    display: flex;
    height: 90px;
    align-items: center;
    width: 640px;
    justify-content: space-between;
}

.pub-header .nav ul li {
    flex: 1;
}

.pub-header .nav ul li>a {
    color: #656565;
    font-size: 14px;
    display: block;
    text-align: center;
    position: relative;
    height: 90px;
    line-height: 90px;
    transition: 1s;
    font-weight: bold;
}

.pub-header .nav li.on>a{
    color: #00255B;
}

/*.pub-header .nav li>a:after {
    content: '';
    width: 0%;
    height: 5px;
    display: block;
    background-color: #00255B;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    transition: 1s;
}

.pub-header .nav li.on>a,
.pub-header .nav li:hover>a {
    color: #00255B;
}

.pub-header .nav li.on>a:after,
.pub-header .nav li:hover>a:after {
    width: 100%;
}*/

.pub-header .nav dl {
    position: fixed;
    width: 100%;
    min-width: 300px;
    top: 90px;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    z-index: 1;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.pub-header .nav li:hover dl {
    height: 60px;
    opacity: 1;
    visibility: visible;
}

.pub-header .nav dd {
    font-size: 14px;
    color: #9397A9;
    height: 60px;
    line-height: 60px;
    padding: 0 1em;
}

.pub-header .nav dd a {
    color: inherit;
    transition: 0.6s;
    white-space: nowrap;
}

.pub-header .nav dd.on a,
.pub-header .nav dd:hover a {
    color: #fff;
}

.pub-header .search,
.pub-header .lang,
.pub-header .menu {
    float: left;
    margin-left: 20px;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
}

.pub-header .search i,
.pub-header .lang i,
.pub-header .menu i {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-size: 16px;
    color: #A3A3A3;
    border: 1px solid #E1E1E1;
    cursor: pointer;
}
.pub-header .lang i a.en{
    display: none;
}
.pub-header .search i:hover,.pub-header .lang i:hover,.pub-header .menu i:hover{
    border:1px solid #00255B;
    color:#00255B;
}
.pub-header .search i{
    background:url(../img/search.png) 5px 5px no-repeat;
    background-size:18px 18px;
}
.pub-header .menu i{
    background:url(../img/menu.png) 6.5px 8.5px no-repeat;
    background-size:16px 12px;
}
.pub-header .search i:hover{
    background:url(../img/search_blue.png) 5px 5px no-repeat;
    background-size:18px 18px;
}
.pub-header .menu i:hover{
    background:url(../img/menu_blue.png) 6.5px 8.5px no-repeat;
    background-size:16px 12px;
}
.pub-header .search i.active{
    background:url(../img/search_white.png) 5px 5px no-repeat;
    background-size:18px 18px;
}
.pub-header .menu i.active{
    background:url(../img/menu_white.png) 6.5px 8.5px no-repeat;
    background-size:16px 12px;
}
.pub-header .search .inbox {
    position: absolute;
    right: 0;
    top: 90px;
    background-color: rgba(0, 0, 0, 0.6);
    width: 664px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.pub-header .search:hover .inbox {
    height: 60px;
    opacity: 1;
    visibility: visible;
}

.pub-header .search input[type="text"],
.pub-header .search input[type="submit"] {
    display: block;
    border: 0;
    outline: none;
    font-size: 14px;
}

.pub-header .search input[type="text"] {
    width: 80%;
    color: #fff;
    background-color: rgba(0, 0, 0, 0);
    display: block;
    height: 60px;
    line-height: 60px;
}

.pub-header .search input[type="text"]::-webkit-input-placeholder {
    color: #fff;
}

.pub-header .search input[type="text"]:-moz-placeholder {
    color: #fff;
}

.pub-header .search input[type="text"]::-moz-placeholder {
    color: #fff;
}

.pub-header .search input[type="text"]:-ms-input-placeholder {
    color: #fff;
}

.pub-header .search input[type="submit"] {
    width: 50px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    color: #000;
}

.pub-header .lang .inbox {
    position: absolute;
    right: 0;
    top: 90px;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.pub-header .lang .inbox li {
    font-size: 14px;
    color: #fff;
    padding: 0 1em;
}

.pub-header .lang .inbox li a {
    color: inherit;
    display: block;
}

.pub-header .lang:hover .inbox {
    height: 60px;
    opacity: 1;
    visibility: visible;
}



.pub-header.nobg .nav li.on>a, .pub-header.nobg .nav li:hover>a{
    color:#fff;
}
.pub-header.nobg .nav li>a{
    color:#fff;
}
.pub-header.nobg .nav li>a:after{
    background-color:#fff;
}
.pub-header.nobg .lang i{
    color:#fff;
}
.pub-header.nobg .search i, .pub-header.nobg .lang i, .pub-header.nobg .menu i{
    border:1px solid #fff;
}
.pub-header.nobg .nav .subline{
    background: #fff;
}
.pub-header.nobg .nav ul li dl{
    display: none;
}

/* 公共底部 */
.footer{
    background: #00255B;
    height: 100px;
    padding-top:30px;
}
.footer .txt{
    font-size:14px;
    color:#8393AD;
}
.footer .txt span{
    font-size:12px;
    display: block;
    line-height: 30px;
}
.footer ul li{
    float:left;
    font-size:14px;
    color:#8393AD;
    font-weight:bold;
    margin-right:20px;
}
.footer ul li:last-child{
    margin-left:0;
}
.footer ul li:hover{
    color:#fff;
}
.footer dl{
    margin-left:20px;
}
.footer dl dt img{
    transition: .6s;
    width:40px;
    height: 40px;
}
.footer dl dt .img2{
    display: none;
}
.footer .weixin:hover dt .img1,.footer .weibo:hover dt .img1{
    display: none;
}
.footer .weixin:hover dt .img2,.footer .weibo:hover dt .img2{
    display: block;
}
.footer .weixin{
    position: relative;
}
.footer .weixin dd{
    position: absolute;
    left:-35px;
    top:-128px;
    width:110px;
    height: 128px;
    z-index: 999;
    transition:all .6s;
    display: none;
}
.footer .weixin dd .bg{
    width:100%;
    height: 123px;
    background: url(../img/footer_codeBg.png) no-repeat;
    background-size:100% 100%;
    padding-top: 5px;
}
.footer .weixin dd img{
    width:100px;
    height: 100px;
    margin:0 auto;
}
.footer .weixin:hover dd{
    display: block;
}
.footer .width1200{
    overflow:inherit;
}


/* 2020-08-25 */
.model{
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
}
.left{
    float:left ;
}
 .right{
    float:right;
}
.clearfloat:after{
    display:block;
    clear:both;
    content:"";
    visibility:hidden;
    height:0 ;
}
.clearfloat{
    zoom:1 ;
}
.width1200{
    width:1200px;
    margin:0 auto;
    overflow: hidden;
}
.nobg{
    background:transparent
}
.right-navigation{
    width: 360px;
    background:rgba(36,41,55,1);
    opacity:0.9;
    height: 100%;
    position: fixed;
    right:0;
    top:0;
    z-index: 1000;
    overflow-y: scroll;
    padding:36px 0 36px 31px;
    right:-360px;
}
.right-navigation .close{
    width:19px;
    height: 20px;
    background: url(../img/close.png) no-repeat;
    background-size:100% 100%;
    cursor: pointer;
}
.right-navigation .close:hover{
    background: url(../img/close_yellow.png) no-repeat;
    background-size:100% 100%;
}
.right-navigation .index-map{
    border-bottom:1px solid #7E839B;
    padding:30px 0 28px 0;
}
.right-navigation .index-map a{
    font-size:18px;
    color:#fff;
    position: relative;
}
.right-navigation .index-map a:before{
    content: '';
    position: absolute;
    width:100%;
    height: 1px;
    left:0;
    bottom:-30px;
    background:#fff;
}
.right-navigation dl dt{
    font-size:14px;
    color:#fff;
}
.right-navigation dl dd ul{
    overflow: hidden;
    margin-top: 18px;
}
.right-navigation dl dd ul li{
    float:left;
    font-size:14px;
    color:#647186;
    margin-left:22px;
}
.right-navigation dl dd ul li:first-child{
    margin-left:0;
}
.right-navigation dl dd ul li:hover{
    font-weight: bold;
    color:#fff;
}
.right-navigation dl{
    border-bottom:1px solid #7E839B;
    padding:30px 0 28px 0;
}
.right-navigation dl:last-child{
    border-bottom: 0;
}

/* 分页 */
.page{
    text-align: center;
}
.page a,.page span.txt input,.page .make-sure{
    font-size:14px;
    color:#656565;
    width:30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border:1px solid #D7D7D7;
    margin:0 5px;
}
.page a.active{
    color:#fff;
    border:1px solid #00245E;
    background:#00245E;
}
.page a.prev,.page a.next,.page span input{
    width:60px;
    cursor: pointer;
}
.page span.txt{
    font-size:14px;
    color:#656565;
}
.page span.txt i{
    font-style: normal;
    margin:0 5px;
}
.page .make-sure{
    width: 50px;
    cursor: pointer;
    background: none;
    outline: none;
    vertical-align: middle;
}
.page span.txt input{
    outline: none;
    cursor: inherit;
}

.sub-banner{
    height: 200px;
    background: no-repeat left top;
    background-size:100% 100%;
    /*background-attachment: fixed;*/
    padding-top:71px;
}
.sub-banner .txt1{
    font-size:24px;
    color:#F9D7A3;
    text-align: right;
    letter-spacing: 11px;
    margin-bottom: 15px;
}
.sub-banner .txt2{
    font-size:12px;
    color:#FBD8A8;
    text-align: right;
    letter-spacing: 8px;
    line-height: 24px;
}
.sub-banner .txt2 span{
    display: block;
}

.public-crumbsNav{
    height: 110px;
    line-height: 110px;
    position: relative;
    transition:height .5s;
}
.public-crumbsNav.active{
    height: 84px;
    line-height: 84px;
}
.public-crumbsNav:after{
    position: absolute;
    content: '';
    width:100%;
    height: 1px;
    background:#eee;
    left:0;
    bottom:0;
}
.public-crumbsNav .txt1{
    background:url(../img/home.png) left center no-repeat;
    background-size:16px 17px;
    padding-left:29px;
    font-size:14px;
    color:#999;
    font-weight: bold;
}
.public-crumbsNav .txt1 a{
    background:url(../img/arrow.png) left center no-repeat;
    background-size:6px 13px;
    padding-left:18px;
    margin-right:12px;
}
.public-crumbsNav .txt1 a:nth-child{
    margin-right:0;
}
.public-crumbsNav .txt2 li a{
    display: block;
}
.public-crumbsNav .txt2 li{
    float:left;
    font-size:14px;
    color:#666;
    font-weight: bold;
    padding:0 15px;
}
.public-crumbsNav .txt2 li:last-child{
    padding:0 0 0 15px;
}
.public-crumbsNav .txt2 li.active{
    color:#00255B;
}
.public-crumbsNav .subSlide{
    position: relative;
}
.public-crumbsNav .subSlide .subline2{
    position:absolute; 
    bottom: 0;
    height: 2px;
    background: #00255B;
}

/* 整个网站-滚动条 */
::-webkit-scrollbar{
    width: 8px;
    height: 8px;
    background-color:#292121;
}
::-webkit-scrollbar-thumb{
    background-color:#f90;
}


/* 右侧菜单栏-滚动条 */
.right-navigation::-webkit-scrollbar{
  width:8px;
  height:8px;
  background-color:#292121;
}
.right-navigation::-webkit-scrollbar-thumb{
  background: #00255B;
}
