/* 404/502页面样式 */
.error-page {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: border-box;
    width: 184px;
    height: 198px;
}

.error-page img {
    display: block;
    width: 160px;
    height: 160px;
    margin: 0 auto;
}

.error-page p {
    text-align: center;
    height: 22px;
    font-size: 14px;
    font-weight: 400;
    color: #999999;
    line-height: 22px;
    margin-top: 16px;
    margin-bottom: 0;
}

.privacy-agreement-page {
    box-sizing: border-box;
    max-width: 1280px;
    padding: 0 40px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-agreement-page>.privacy-agreement-page-title {
    box-sizing: border-box;
    margin-top: 100px;
    margin-bottom: 16px;
    height: 26px;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    line-height: 26px;
    text-align: center;
}

.privacy-agreement-page>.privacy-agreement-page-content {
    width: 100%;
}

.privacy-agreement-page>.privacy-agreement-page-content>p {
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 22px;
    margin-bottom: 16px;
}

.privacy-agreement-page>.privacy-agreement-page-content>.agreement-page-content-title {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    line-height: 22px;
}

.privacy-agreement-page>.privacy-agreement-page-content .agreement-page-content-underline {
    text-decoration: underline;
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    line-height: 22px;
}

.error-page-allbtn {
    margin-top: 24px;
    overflow: hidden;
}

.error-page-btn {
    float: left;
    box-sizing: border-box;
    width: 88px;
    height: 32px;
    font-size: 14px;
    line-height: 30px;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
}

.error-page-leftbtn {
    color: #333333;
    background: #FFFFFF;
    border: 1px solid #D9D9D9;
    margin-right: 8px;
}

.error-page-leftbtn.hover {
    color: #468eeb;
    background-color: #FFFFFF;
    border-color: #468eeb;
}
.error-page-leftbtn:active {
    color: #114eb8;
    background-color: #FFFFFF;
    border-color: #114eb8;
}

.error-page-rightbtn {
    color: #FFFFFF;
    background: #1F6CDD;
    border: 1px solid #1F6CDD;
}

.error-page-rightbtn.hover {
    background-color: #468eeb;
    border-color: #468eeb;
}

.error-page-rightbtn:active {
    color: #fff;
    background-color: #114eb8;
    border-color: #114eb8;
}

@media screen and (min-width: 1280px) {}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
    .privacy-agreement-page {
        padding: 0 40px;
    }

}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .privacy-agreement-page {
        padding: 0 24px;
    }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
    .privacy-agreement-page {
        padding: 0 24px;
    }

    /* 标题间距 */
    .privacy-agreement-page>.privacy-agreement-page-title {
        margin-top: 72px;
        margin-bottom: 16px;
    }
}

@media screen and (max-width: 575px) {
    .privacy-agreement-page {
        padding: 0 16px;
        margin-bottom: 28px;
    }

    /* 标题间距 */
    .privacy-agreement-page>.privacy-agreement-page-title {
        margin-top: 72px;
        margin-bottom: 16px;
    }
}