/*
 * @FilePath: \templets\new\css\cookie_statement.css
 * @Description: 广州现代肿瘤医院 Cookie 使用声明
 */
@charset "utf8";

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

.cookie-statement-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 h3.title-text {
    font-size: 22px;
    text-align: left;
    margin-top: 15px;
}

.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: 18px;
    list-style: disc inside;
    /* color: #2A78BA; */
}

.content-box .content-text {
    width: 100%;
    line-height: 1.5em;
    margin-top: 15px;
    font-size: 18px;
    display: flex;
    flex-direction: column;
}

.content-box .table-text {
    width: 100%;
    margin: 15px 0 0;
}

.table-text thead {
    width: 100%;
}

.table-text thead tr {
    width: 100%;
    background: #2A78BA;
}

.table-text thead tr th {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    white-space: nowrap;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
}

.table-text tbody {
    width: 100%;
}

.table-text tbody tr {
    width: 100%;
    background: #fff;
}

.table-text tbody tr:nth-child(even) {
    width: 100%;
    background: #cbeaff;
}

.table-text tbody tr td {
    font-size: 18px;
    color: #000;
    padding: 10px;
    box-sizing: border-box;
}

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

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

    .cookie-statement-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: 22px;
    }

    .content-box h3.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;
    }

    .table-text thead tr th {
        white-space: wrap;
        padding: 5px;
        font-size: 18px;
    }

    .table-text tbody tr td {
        font-size: 16px;
        padding: 5px;
    }
}