*{
    padding: 0;
    margin: 0;
}
html{
    overflow-x:hidden;
    overflow-y:auto;
}
html,body{
    width: 100%;
    height: 100%;
    color: #333333;
}
a{
    text-decoration:none;
}

#headerPage{
    width: 100%;
    height: 120px;
    position: fixed;
    z-index: 99999;
    color: #fff;
    top: 0;
}
#headerPage .content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 1300px;
    margin: 0 auto;
}
#headerPage .content .left{
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}
#headerPage .content .left .logo{
    width: 76px;
    height: 76px;
    background-image: url(./assets/icons/logo.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    margin-right: 7px;
}
#headerPage .content .right{
    display: flex;
    align-items: center;
}
#headerPage .content .right .item{
    font-size: 20px;
    line-height: 21px;
    font-weight: bold;
    margin: 0 20px;
    padding: 7px 15px;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    color: #fff;
}
#headerPage .content .right .item a{
    color: #fff;
}
#headerPage .content .right .item:last-child{
    margin-right: 0;
}
#headerPage .content .right .item:hover{
    background-color: #31AFE5;      
}
#headerPage .content .right .item .item-menu-box{
    overflow: hidden;
    /* visibility:hidden; */
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    animation-duration: .5s;
}
#headerPage .content .right .item .item-menu-box .item-menu{
    margin-top: 42px;
    min-width: 110px;
    background-color: #F5F5F3;
    border-radius: 15px;
    box-sizing: border-box;
    padding: 10px;
}
#headerPage .content .right .item .item-menu-box .item-menu .item-menu-li{
    font-size: 14px;
    font-weight: 400;
    color: #000915;
    text-align: center;
    margin-bottom: 10px;
    cursor: pointer;
}
#headerPage .content .right .item .item-menu-box .item-menu .item-menu-li:last-child{
    margin-bottom: 0;
}
#headerPage .content .right .item:hover>.item-menu-box{
    /* visibility: visible; */
    display: block;
}
#headerPage .content .right .item .item-menu-box:hover{
    /* visibility: visible; */
    display: block;
}
#headerPage .content .right .item .item-menu-box .item-menu .item-menu-li:hover{
    color: #31AFE5;
}

#footerPage{
    width: 100%;
    height: 400px;
    background-color: #232323;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 30px 0 10px;
    color: #fff;
}
#footerPage .title{
    display: flex;
    align-items: center;
    color: #fff;
}
#footerPage .title .logo{
    width: 77px;
    height: 77px;
    background-image: url(./assets/icons/logo.png);
}
#footerPage .title .text{
    font-size: 20px;
    font-weight: bold;
    margin-left: 7px;
    color: #fff;
}
#footerPage .name{
    font-size: 26px;
    font-size: 400;
    color: #fff;
}
#footerPage .list{
    width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 24px;
    font-weight: 400;
    
}
#footerPage .list >div{
    color: #C5C3C3;
}
#footerPage .list >div a{
    color: #C5C3C3;
}
#footerPage .msg{
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    text-align: center;
}