*{
    padding: 0;
    margin: 0;
}
html::-webkit-scrollbar,body::-webkit-scrollbar{
    width: 0;
    display: none;
}
html,body{
    width: 100%;
    height: 100%;
    scrollbar-width: none; /* Firefox浏览器 */
    -ms-overflow-style: none; /* Internet Explorer和Edge浏览器 */
}

@font-face {
    font-family: AlibabaPuHuiTiMedium;
    src: url('/font/Alibaba-PuHuiTi-Medium.otf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: AlibabaPuHuiTiRegular;
    src: url('/font/Alibaba-PuHuiTi-Regular.otf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: AlibabaPuHuiTiBold;
    src: url('/font/Alibaba-PuHuiTi-Bold.otf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
.page{
    width: 100%;
    height: 100%;
}
/* 顶部菜单 */
.page-header{
    width: 100%;
    height: 4.645vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 3;
    background-color: #234681;
}
.page-header-logo{
    width: 7.336vw;
    height: 2.216vw;
    margin-left: 10.556vw;
}
.page-header-logo img{
    width: 100%;
    height: 100%;
}
.page-header-menu{
    margin-right: 10.556vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.page-header-menu-item{
    width: 6.756vw;
    height: 4.645vw;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
}
.page-header-menu-item:hover .page-header-menu-item-navigation{
    display: block;
}
.page-header-menu-item:hover .page-header-menu-item-title img{
    transform: rotate(180deg);
    transition:all 0.4s;
}
.active-menu{
    font-family: AlibabaPuHuiTiMedium;
    position: relative;
    transition:all 0.6s;
    color: #fff;
}
.active-menu::before{
    content: "";
    display: inline-block;
    width: 1.689vw;
    height: 0.263vw;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    transition: all 0.6s;
}
.page-header-menu-item-title{
    font-family: AlibabaPuHuiTiRegular;
    font-size: 0.95vw;
    width: 6.756vw;
    height: 4.645vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-header-menu-item-title img{
    width: 0.844vw;
    height: 0.844vw;
    margin-left: 0.158vw;
}
.page-header-menu-item-navigation{
    position: absolute;
    top: 4.645vw;
    width: 9.395vw;
    background: #FFFFFF;
    box-shadow: 0px 0.211vw 0.844vw 0px rgba(0,0,0,0.33);
    border-radius: 0px 0px 0.211vw 0.211vw;
    padding: 0.633vw 1.1vw 0.844vw 1.1vw;
    display: none;
}
.page-header-menu-item-navigation-item{
    font-family: AlibabaPuHuiTiRegular;
    font-weight: 400;
    font-size: 0.95vw;
    color: #666;
    line-height: 1.319vw;
    width: 100%;
    text-align: center;
    margin-bottom: 1.055vw;
}
.page-header-menu-item-navigation-item:last-child{
    margin: 0;
}


/* 新闻菜单 */
.page-main-navigation{
    width: 100%;
    height: 4.645vw;
    background-color: #F5F5F5;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-main-navigation-item{
    height: 100%;
    padding: 0 2.744vw;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: AlibabaPuHuiTiRegular;
    font-weight: 400;
    font-size: 1.266vw;
    color: #666666;
    cursor: pointer;
}
.active-navigation-menu{
    color: #fff;
    background-color: #4A8CFF;
}

/* 底部公司联系和版权信息 */
/* 底部公司联系和版权信息 */
.page-footer{
    width: 100%;
    height: 15.624vw;
    background: #234681;
    box-sizing: border-box;
    padding-top: 2.216vw;
}
.page-footer-data{
    /*width: calc(100% - 32.726vw);*/
    width: calc(100% - 13.316vw);
    height: 9.342vw;
    margin:0 auto 1.689vw auto;
    display: flex;
    justify-content: space-between;
    font-family: AlibabaPuHuiTiRegular;
    font-weight: 400;
    position: relative;
    box-sizing: border-box;
    padding: 0 16.785vw;
    border-bottom: 1px solid #385C99;
}
.page-footer-data-item-title{
    font-size: 1.161vw;
    color: #FFFFFF;
    line-height: 1.583vw;
    margin-bottom: 0.844vw;
}
.page-footer-data-item-row{
    font-size: 0.95vw;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3vw;
    margin-bottom: 0.63vw;
    display: flex;
    justify-content: flex-start;
}
.page-footer-data-item-row a{
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 1.25vw;
    position: relative;
}
.page-footer-data-item-row a::before{
    content: "";
    display: inline-block;
    width: 1px;
    height: 0.527vw;
    background: rgba(255, 255, 255, 0.6);
    position: absolute;
    right: -0.633vw;
    top: 0.422vw;
}
.page-footer-data-item-row a:last-child::before{
    display: none;
}
.page-footer-data-item-row label{
    display: inline-block;
}
.page-footer-data-item-icon{
    width: 5.067vw;
    height: 5.067vw;
}
.page-footer-data-item-icon img{
    display: inline-block;
    width: 100%;
    height: 100%;
}
.qr-code-title{
    width: 5.067vw;
    text-align: center;
}
.page-footer-copyright{
    width: calc(100% - 46.872vw);
    margin:0 auto;
    display: flex;
    justify-content: space-between;
}
.page-footer-copyright-row,.page-footer-copyright-row a{
    margin-bottom: 0.633vw;
    line-height: 1.3vw;
    color: rgba(160,160,160,0.6);
    font-weight: 400;
    font-size: 0.95vw;
    font-family: AlibabaPuHuiTiRegular;
    text-decoration: none;
}
.page-footer-copyright-row-item{
    position: relative;
}
.page-footer-copyright-row-item img{
    position: relative;
    top: 0.263vw;
    width: 1vw;
    height: 1.16vw;
}

