/*头部样式*/
/*提示信息*/
.notice-content {
    position: fixed;
    left: 50%;
    top: 50%;
    background: #ffffff;
    width: 800px;
    border-radius: 4px;
    box-shadow: 1px 1px 12px rgba( 0, 0, 0, 0.1);
    transform: translate(-50%,-60%);
    height: 400px;
}
.notice-header {
    text-align: right;
}
.notice-header img{
    padding: 10px 10px;
    width: 20px;
    cursor: pointer;
}
.notice-middle {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 6%;
}
.notice-middle img{
    width: 120px;
}
.notice-middle.notice-404 img{
    width: 180px;
}
.notice-footer {
    text-align: center;
    font-size: 22px;
}
.notice-footer {
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 44px;
}
.notice-footer .tip{
    font-size: 14px;
    display: block;
    color: #999;
    margin-top: 20px;
}
.notice-footer .tip a{
    color: #1d6af2;
}
    /*底部信息*/
.footer{
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
}
.footer-area {
    text-align: center;
    margin: 20px 0;
    font-size: 14px;
    color: #666;
}
.tech-support {
    color: #999;
    margin-top: 5px;
}
.tech-support  a{
    color: #666;
    text-decoration: none;
}
.tech-support a:focus{
    text-decoration: none;
}

@media screen and (max-width: 600px) {
    .notice-content {
        margin-left: -120px;
        margin-top: -76px;
        width: 240px;
    }

    .notice-middle{
        margin-bottom: 20px;
    }
    .notice-middle img {
        width: 50px;
        height: 52px;
    }
    .notice-footer{
        padding-bottom: 20px;
        font-size: 14px;
    }
}





