/*
 * @FilePath: \templets\new\css\statement_terms.css
 * @Description: 法律声明与隐私条款
 */
@charset "utf8";

.statement-terms-page {
    width: 100%;
    background: #f5f5f5;
    padding: 30px calc(50% - 700px);
    box-sizing: border-box;
}

.statement-terms-page .content-area {
    width: 100%;
}

.content-area h1.title-box {
    width: 100%;
    font-weight: bold;
    text-align: center;
    font-size: 36px;
    color: #2A78BA;
}

.content-area .description-box {
    width: 100%;
    margin-top: 30px;
    font-size: 18px;
    line-height: 1.5em;
}

.content-area .content-box {
    width: 100%;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}

.content-box h2.title-text {
    font-size: 25px;
    text-align: left;
}

.content-box .text-list {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.content-box .text-list .text-item {
    width: 100%;
    line-height: 1.5em;
    margin-top: 10px;
    font-size: 16px;
}

.content-box .content-text {
    width: 100%;
    line-height: 1.5em;
    margin-top: 10px;
    font-size: 18px;
}

/* 取消移动端的hover效果 只有pc端的生效 */
@media (any-hover: hover) {
}

/*移动端样式*/
@media screen and (max-width: 768px) {
    .statement-terms-page {
        width: 100%;
        background: #f5f5f5;
        padding: 15px;
    }

    .statement-terms-page .content-area {
        width: 100%;
    }

    .content-area h1.title-box {
        font-size: 25px;
    }

    .content-area .description-box {
        font-size: 16px;
        margin-top: 15px;
    }

    .content-area .content-box {
        width: 100%;
        margin-top: 15px;
    }

    .content-box h2.title-text {
        font-size: 20px;
    }

    .content-box .text-list {
        width: 100%;
    }

    .content-box .text-list .text-item {
        font-size: 16px;
    }

    .content-box .content-text {
        font-size: 16px;
    }
}