@charset "utf-8";
@font-face {
    font-family: PingFangSC;src: url("../font/PingFang-SC-Regular.ttf");
}
@font-face {
    font-family: HarmonyOS_Sans;src: url("../font/HarmonyOS_Sans_SC_Regular.ttf");
}
html::-webkit-scrollbar {
    width: .08rem;
}
html::-webkit-scrollbar-thumb {
    border-radius: .08rem;
    background: #2d7d9a;
}
html::-webkit-scrollbar-track {
    border-radius: 0;
    background: rgba(0, 0, 0, 0.1);
}
header{
    width: 100%;
    height: auto;
    box-sizing: border-box;
    z-index: 9999;
    animation: 0.8s ease .3s 1 normal backwards running fadeInDown;
    position: fixed;
    top: 0;
    left: 0;
    padding: 0.2rem 0.35rem;
    background: url(../img/headerBg.png) no-repeat center;
    background-size: cover;
    box-sizing: border-box;
    box-shadow: 0 0 0.13rem 0 rgba(0,0,0,0.4);
}
.flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.flex-r{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}
.flex-l{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}
.flex-c{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.flex-b{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
}
.img{
    position: relative;
    width: 100%;
    overflow: hidden;
}
.img p{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all 0.3s;
}
a:hover .img p{
    transform: scale(1.05);
}
/* 导航logo--1 */
.logo {
    transition: all 0.5s ease;
}
.logo a,.logo a img{
    display: block;
    width: auto;
    height: auto;
    max-height: 0.54rem;
}
.linkTop{
    position: relative;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.leftNav .linkTop{
    display:none;
}
.linkTop a{
    position: relative;
    font-size: 0.16rem;
    font-weight: normal;
    line-height: 0.3rem;
    letter-spacing: 0em;
    color: #fff;
    z-index: 99;
    display: block;
    margin-right: 0.2rem;
    padding-left: 0.25rem;
    background: url(../img/xysyIcon.png) no-repeat left center;
    background-size: 0.16rem auto;
}
.linkTop a:hover{
    color:#f7be16;
}
.linkTop li:last-of-type a::before{
    display:none;
}
.serSub{
    width: 2.8rem;
    height: 0.4rem;
    position: relative;
    border-radius: 0.2rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.28);
}
.serSub .text{
    display: block;
    float: left;
    width: calc(100% - 0.38rem);
    height: 0.38rem;
    border: none;
    font-size: 0.16rem;
    line-height: 0.38rem;
    color: #fff;
    padding: 0 0.15rem;
    box-sizing: border-box;
    background: transparent;
}
.serSub .submit{
    display: block;
    float: left;
    width: 0.38rem;
    height: 0.4rem;
    background: transparent url(../img/search.png) no-repeat left center;
    background-size: 0.2rem auto;
    border: none;
    box-sizing: border-box;
    position: absolute;
    right: 0;
    top: 0;
}
div.main{
    padding-top: 0.94rem;
    display: flex;
    justify-content: flex-start;
}
.leftNav{
    width: 2.6rem;
    background: #2d7d9a;
    padding: 0.35rem 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: 0.8s ease .3s 1 normal backwards running fadeInLeft;
}
.leftNav .link{
    padding: 0.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.leftNav .link p{
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.22);
    box-sizing: border-box;
    height: 0.4rem;
    line-height: 0.4rem;
    padding: 0 0.1rem;
    font-size: 0.16rem;
    color: #fff;
    position: relative;
    cursor: pointer;
}
.leftNav .link p i{
    display: block;
    position: absolute;
    right: 0.1rem;
    top: 50%;
    transform: translateY(-50%);
}
.leftNav .link p i img{
    display: block;
    width: auto;
    height: auto;
}
.leftNav .link .linkSub{
    position: relative;
}
.leftNav .link .linkSub ul{
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: auto;
    background: rgba(255, 255, 255, 1);
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.42s ease-out 0s;
    -moz-transition: all 0.42s ease-out 0s;
    -ms-transition: all 0.42s ease-out 0s;
    -o-transition: all 0.42s ease-out 0s;
    transition: all 0.42s ease-out 0s;
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    -ms-transform: rotateX(90deg);
    -o-transform: rotateX(90deg);
    transform: rotateX(90deg);
    transform-origin:50% 0% ;
}
.leftNav .link .linkSub:hover ul{
    visibility: visible;
    opacity: 1;
    -webkit-transform: rotateX(0);
    -moz-transform: rotateX(0);
    -ms-transform: rotateX(0);
    -o-transform: rotateX(0);
    transform: rotateX(0);
}
.linkSub ul li a{
    display:block;
    width: 100%;
    height: auto;
    font-size: 0.16rem;
    line-height: 0.4rem;
    box-sizing:border-box;
    color: #333;
    padding: 0 0.1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.linkSub ul li a:hover{
    color: #2d7d9a;
}
.linkSub ul li:last-of-type a{
    border-bottom: none;
}
.leftNav .bq{
    margin-top: 0.3rem;
    width: 100%;
    box-sizing: border-box;
    padding: 0 0.2rem;
}
.leftNav .bq p{
    font-size: 0.14rem;
    line-height: 0.26rem;
    color: #ffffff;
}
.nav>li{
    width: 100%;
    height: auto;
    padding: 0.1rem 0.4rem;
    padding-right: 0.1rem;
    box-sizing: border-box;
}
.nav>li>a{
    display: block;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    font-size: 0.18rem;
    line-height: 0.26rem;
    box-sizing: border-box;
    padding: 0.05rem 0;
    color: #fff;
}
.nav>li>a .icon{
    position: relative;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.15rem;
}
.nav>li>a .icon img{
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}
.nav>li.hover{
    background: #428aa4;
}
.nav>li>ol{
    padding-left: 0.4rem;
    width: 100%;
    height: auto;
    box-sizing: border-box;
}
.nav>li>ol>li>a{
    display: block;
    font-size: 0.16rem;
    line-height: 0.24rem;
    padding: 0.08rem 0;
    color: #fff;
}
.nav a:hover{
    text-indent: 5px;
    font-weight: bold;
}
.rightCon{
    width: calc(100% - 2.6rem);
    height: auto;
    box-sizing: border-box;
    padding: 0.35rem;
    background: url(../img/bg.png) no-repeat center;
    background-size: cover;
}
.header_m,header .menu1{
    display: none;
}
/* tab */
.content .conSub .table-container{width:100%;overflow-x: auto;}
.content .conSub table{
    display: table;
    border: none!important;
    border-right: 1px solid #333!important;
    border-bottom: 1px solid #333!important;
    margin: 0 auto!important;
    width: 100%;
    background: #fff;
    min-width: 768px;
}
.content .conSub table tr th,
.content .conSub table tr td {
    border:none!important;
    border-left: 1px solid #333!important;
    border-top: 1px solid #333!important;
    padding: 5px !important;
    text-align: center;
    width: auto !important;
}
.content .conSub table tr th p,.content .conSub table tr td p{text-indent: 0 !important;}
.content .conSub iframe{
  display:block;
  width:100%;
  height:800px;
  margin:0 auto 10px;
}
/* 媒体查询 */
@media only screen and (min-width: 1921px){
    .logo a,.logo a img{
        max-height: none;
        height: 0.54rem;
    }
    .nav>li>a .icon img{
        min-width: 0.2rem;
    }
    .nav>li>a .icon{
        width: 0.25rem;
        height: 0.25rem;
    }
}
@media only screen and (max-width: 1240px){
    div.main{
        position: relative;
    }
    .leftNav{
        position: fixed;
        right: 0;
        top: 0.94rem;
        z-index: 999;
        transition: all .3s;
        width: 3rem;
        height: calc(100% - 0.94rem);
        z-index: -1;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s;
        display: block;
        overflow: auto;
        box-sizing: border-box;
        padding: 0;
        padding: 0.35rem 0;
    }
    .leftNav.active {
        visibility: visible;
        opacity: 1;
        z-index: 99999999;
    }
    .rightCon{
        width: 100%;
    }
    header .menu1{
        display: block;
    }
    header .linkTop{
        display: none;
    }
    .menu1 {
        width: 35px;
        height: auto;
        display: block;
        overflow: hidden;
        z-index: 999999999;
        cursor: pointer;
    }
    .menu1 span {
        float: left;
        width: 100%;
        background: #fff;
        transition: all 0.4s ease;
        margin-top: 12px;
        height: 2px;
    }
    .menu1 span:nth-of-type(2){
        width: 80%;
    }
    .menu1 span:first-of-type {
        margin-top: 0;
    }
     .menu1.open span{
         background: #fff;
     }
    .menu1.open span:nth-of-type(1) {
        transform: rotate(45deg);
        margin-top: 12px;
    }
    .menu1.open span:nth-of-type(2) {
        transform: rotate(-45deg);
        margin-top: -2px;
        width:100%;
    }
    .menu1.open span:nth-of-type(3) {
        opacity: 0;
    }
    body.navshow {
        overflow: hidden;
        position: fixed;
        width: 100%;
        top: 0px;
        left: 0px;
        margin: 0;
    }
    body.navshow::before{
        display:block;
        content:"";
        width:100%;
        height:100%;
        background: rgba(0,0,0,0.2);
        position:absolute;
        left:0;
        top: 0;
        z-index: 999;
    }
    .leftNav .linkTop{
        justify-content: center;
        padding: 0 0.2rem;
        display: block;
        margin-bottom: 0.2rem;
    }
    .serSub{
        width: 100%;
    }
    header{
        padding: 0.2rem 15px;
    }
}
@media only screen and (max-width: 1040px){
}
@media only screen and (max-width: 768px){
    .logo a, .logo a img{
        height: 0.44rem;
    }
    div.main{
        padding-top: 0.84rem;
    }
    .leftNav{
        top: 0.84rem;
        height:calc(100% - 0.84rem);
    }
}
@media only screen and (max-width: 520px){
    .logo a, .logo a img{
         height: 0.34rem;
    }
    header{
        padding: 0.2rem 10px;
    }
    header .menu1{
        width: 30px;
    }
    .menu1 span{
        margin-top: 10px;
    }
    div.main{
        padding-top: 0.74rem;
    }
    .leftNav{
        top: 0.74rem;
        height:calc(100% - 0.74rem);
    }
}