*{
    box-sizing: border-box;
    position: relative;
    font-family: PingFangSC, PingFang SC,"Microsoft YaHei", "微软雅黑",Helvetica Neue,Helvetica,Tahoma,Arial,sans-serif;
}
body,html{
    overflow-x: hidden;
}

.container{
    width: 1440px;
    margin: 0 auto;
}


.home-menu .logo{
    width: 70px;
    height: 30px;
    object-fit: cover;
    margin-right: 30px;
}
.home-menu{
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
}
.home-menu a{
    color: #000000;
    margin-right: 50px;
    position: relative;
}

.home-menu a:hover{
    color: #3377FF;
    position: relative;
    transition: all 0.5s ease;
}
.home-menu a:hover::after{
    content: '';
    position: absolute;
    width: 80%;
    height: 4px;
    z-index: 999;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #3377FF;
    border-radius: 3px;
}

.bottom{
    font-size: 16px;
    background: #3377FF;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-top: 80px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#laypage{
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#laypage a:hover{
    color: #3377FF!important;
}