@charset "utf-8";

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
    border: 0;
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
}

body {
    max-width: 1920px;
    margin: 0 auto;
    overflow-x: hidden;
}

ul li {
    list-style: none;
}

a {
    text-decoration: none;
    outline: none;
}



.header {
    width: 100%;
    height: 96px;
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: rgba(255, 255, 255, .81);
    z-index: 999;
}

.header-topline {
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to right, #fefefe, #0860ba);
    background-size: 100% 2px;
    background-repeat: no-repeat;
    background-position: top left;
}

.headernav {
    width: 100%;
    padding: 0px 42px;
    height: 94px;
    display: flex;
    align-items: center;
    transition: all .3s ease;
}

.headernav .logo {
    width: 20%;
    max-width: 326px;
}

.headernav #nav {
    width: 60%;
    height: 100%;
}

.headernav #lang {
    width: 20%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
}


.logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#nav .tNavBox {
    width: 100%;
    height: 100%;
    overflow: visible;
    background: none;
}

#nav .navBtn,
#nav .iconJt {
    display: none;
}

#nav .tNav {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    overflow: visible;
}

#nav .navUl {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

#nav .navLi {
    padding: 0 36px;
    display: inline-block;
    line-height: 94px;
}

#nav .tNavH {
    position: relative;
}

#nav .tNavH::before {
    content: '';
    position: absolute;
    z-index: 999;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 0;
    height: 3px;
    background-color: #01458e;
    opacity: 0;
    transition: all .5s ease;
}

#nav .navLi:hover .tNavH::before {
    width: 100%;
    opacity: 1;
}

#nav .navLi.on .tNavH::before {
    width: 100%;
    opacity: 1;
}

#nav .navName {
    position: relative;
    display: block;
    font-size: 18px;
    color: #464646;
    transition: all .5s ease;
}

#nav .slidBox {
    position: absolute;
    top: 94px;
    left: 0%;
    width: 100%;
    min-width: auto;
    height: 0;
    overflow: hidden;
    z-index: 110;
    padding: 0 5px;
    transition: all .5s ease;
    opacity: 0;
    display: flex !important;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    justify-content: center;
}

#nav .navLi:hover .slidBox {
    height: auto;
    opacity: 1;
    background: #f2f2f2;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

#nav .navLi .slidBox a {
    color: #555555;
    display: block;
    padding: 0 36px;
    font-size: 16px;
}
#nav .navLi .slidBox a:hover{
    color:#145c9f;
}


.header.fixed{
    transition: all 0.5s ease-out 0s;
    height:80px;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 1px 3px rgba(0, 90, 178, 0.1);
}
.header.fixed .headernav{
    height:80px;
}
.header.fixed #nav .navLi{
    line-height:80px;
}

.header.fixed #nav .slidBox{
    top:80px;
}


.searchbtn{
    padding-top:10px;
    margin-right: 12px;
}



.language-group {
    position: relative;
}

.language-group button {
    background: #fff;
    border: 1px solid #ddd;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 13px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top:0px;
}

.mod-languages button img {
    width: 18px;
    height: 12px;
}

.language-group .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 5px 0;
    min-width: 96px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.language-group .dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
}

.language-group .dropdown-menu li a:hover {
    background: #f5f5f5;
}

.language-group .dropdown-menu li a img {
    width: 18px;
    height: 18px;
}

.language-group:hover .dropdown-menu,
.language-group.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
@media (max-width: 1540px) {
    #nav .navLi{
        padding: 0 24px;
    }
}

@media (max-width: 1440px) {
    #nav .navLi{
        padding: 0 24px;
    }
    #nav .navName{
        font-size: 16px;
    }
}
@media (max-width: 1370px) {
    
}
@media (max-width: 1280px) {
#nav .navLi{
        padding: 0 12px;
    }
}
@media (max-width: 1200px) {

}
@media (max-width: 1024px) { 
    .header {
        top: 0px;
        width: 100%;
        height: 70px;
        line-height: 70px;
        border-radius: 0px;
    }
    .headernav{
        height:68px;
        line-height:68px;
        padding:0px;
            justify-content: space-between;
    }
    .headernav .logo{
        width:45%;
        height:100%;
    }
    .headernav .logo img{
        padding-top:28px;
    }
    .headernav #lang{
        display: none;
    }

    #nav .tNavBox {
        position: relative;
        overflow: hidden;
        height: 68px;
        background: none;
    }
    #nav .navBtn {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: #01458e;
        width: 40px;
        height: 40px;
        padding: 10px;
        line-height: 73px;
        display: block;
    }

    
    #nav .navLine {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    #nav .navBtnImg {
        display: block;
        width: 90%;
        height: 70%;
    }

    #nav .tNav {
        position: fixed;
        top: 70px;
        right: 0;
        width: 60%;
        height: 0;
        overflow: hidden;
        z-index: 999;
        transition: all .5s ease;
    }

    #nav .tNavHeight {
        height: 100%;
    }

    #nav .slidBox {
        display: none;
        position: initial;
        display: block !important;
    }

    #nav .navUl {
        background: rgba(0, 0, 0, 0.8);
        overflow: hidden;
        display: block;
    }

    #nav .navLi {
        border-bottom: 1px solid #696969;
        position: relative;
        width:100%;
        line-height: 46px;
        padding: 0px;
        display: block;
    }

    #nav .tNavH {
        position: relative;
        height: 46px;
        line-height: 46px;
        padding: 0 5%;
        font-size: 1rem;
        transition: all .5s ease;
    }

    #nav .tNavHBac {
        background-color: #01458e;
    }

    #nav .navName {
        display: block;
        width: 100%;
        height: 100%;
        color: #fff;
        font-size:16px;
    }

    #nav .iconJt {
        position: absolute;
        top: 0;
        right: 2%;
        display: flex;
        width: 46px;
        height: 46px;
        background:url(../images/icon_jt.png) no-repeat;
        background-position: 12px;
        justify-content: center;
        align-items: center;
        color: #fff;
        font-size: 0.875rem;
        transition: all .5s ease;
    }

    #nav .iconJtRotate {
        transform: rotate(-180deg);
    }

    #nav .navSliBtn {
        height: 40px;
        width: 100%;
        text-align: center;
    }

    #nav .hs {
        height: 100%;
    }

    #nav .navSbox {
        padding-bottom: 30px;
    }

    #nav .navSli {
        padding-left: 8%;
        font-size: 0.875rem;
        height: 38px;
        line-height: 38px;
    }

    #nav .navSlink {
        display: block;
        height: 46px;
        line-height: 46px;
        color: #fff;
    }
    .header.fixed{
        height:70px;
    }
    .header.fixed .headernav{
        height:70px;
    }

   
}
@media (max-width: 767px) { 
    #nav .navLi .slidBox a{
        padding: 0px 4px;
        font-size: 14px;
    }
}
@media (max-width: 480px) { 
    
}




.footer{
    background-color:#eee;
    padding:32px 42px;
    display: flex;
}
.footernav{
    width:60%;
    display: flex;
    justify-content: center;
    padding-top:32px;
}
.footernav a{
    padding:0px 40px;
    font-size:20px;
    color:#444445;
}
.footercontact{
    width:40%;
}
.footercontact{
    font-size: 16px;
    line-height: 2;
    display: flex;
}
.footercontact .footertel{
    font-size:24px;
	font-weight: normal;
	line-height: 32px;
	color: #005ab2;
    padding-left: 47px;
    background: url(../images/tel.png) no-repeat left center;
    margin-bottom: 12px;
}
.footercontact .ewm img{
    margin-left:24px;
    max-width: 120px;
}



.rightfixed{
    position: fixed;
    bottom:120px;
    right:10px;
    padding:8px 8px;
    border-radius:12px;
    background-color:#f6f6f6;
    z-index:1000;
}
.rightfixed img{
    max-width:48px;
}
.fixeddp{
    margin:0px;
}
.fixeddp .fixeditem{
    margin-bottom:8px;
}
.fixeddp .fixeditem:nth-child(3){
    margin-bottom:0px;
}

@media (max-width: 1024px) { 
    .footernav a{
        padding: 0px 20px;
    }
    .footercontact{
        font-size: 14px;
    }
}
@media (max-width: 767px) { 
  .footer{
    flex-wrap: wrap;
    padding:24px 2%;
  }
  .footernav{
    width:100%;
    padding-top: 0px;
    justify-content: space-between;
  }
  .footernav a{
    padding: 0px;
    font-size: 14px;
  }
  .footercontact{
    width:100%;
    margin-top: 20px;
  }
}

@media (max-width: 480px) { 
    .footercontact{
        flex-wrap: wrap;
    }
    .footercontact .ewm{
        width:100%;
    }
    .footercontact .ewm img{
        margin:12px auto 0px;
        display: block;
    }
}


.pagination{
    text-align: center; 
    margin-top:24px;
    margin-bottom:48px;
}
.page_list{clear:both;   text-align: center; margin-bottom: 30px;}
.page {
    display:inline-block;
    font: 16px/28px '寰蒋闆呴粦', sans-serif;}
.page span,.page strong {
    float:left;}
.page a,
.page span.disabled,
.page strong {
    background:#FFF;
    border:1px solid #CCC;
    color:#333;
    float:left;
    font: 16px/24px  '寰蒋闆呴粦', sans-serif;
    margin-right:5px;
    min-width:15px;
    padding:4px 8px;
    text-align:center;
    vertical-align:middle;
    white-space:nowrap;
    _width:15px;}
    .page strong{background:#226bb5; color:#fff; }
.page a:hover {
    border:1px solid #226bb5;
    color:#226bb5;
    text-decoration:none;}