html,
body {
    background-color: #ffffff;
    min-height: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}


.page-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    color: #333333;
    text-align: center;
    margin-top: 100px;
}

.page-description {
    font-weight: 400;
    font-size: 22px;
    line-height: 100%;
    color: #666666;
    text-align: center;
    margin-top: 10px;
}


.table-box {
    width: 1200px;
    margin: 40px auto 0;
    border: 1px solid #457DF4;
    border-radius: 20px;
    overflow: hidden;
}

.table-box .table-title {
    background-color: #457DF4;
    font-weight: 700;
    font-size: 26px;
    line-height: 70px;
    letter-spacing: 0.07em;
    text-align: center;
    color: #ffffff;
}

.tr {
    display: flex;
}

.tr .item {
    display: flex;
    /* flex: 1; */
    width: 50%;
}


.td {
    font-size: 18px;
    letter-spacing: 0.07em;
    color: #333333;
    padding-left: 30px;
    min-height: 70px;
    display: inline-block;
    box-sizing: border-box;
    border-right: 1px solid #457DF4;
    border-top: 1px solid #457DF4;
    display: flex;
    align-items: center;
}

.tr .item:last-child .td:last-child {
    border-right: none;
}

.tr .item-label {
    width: 220px;
    background-color: #F5F8FF;
}

.tr .item-value {
    flex: 1;
}

.td.jyfw {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 20px;
}

.td.site {
    padding: 0;
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* 手机 版心 */
@media screen and (max-width: 768px) {
    .page-title {
        font-size: 20px;
        margin-top: 50px;
    }

    .page-description {
        font-size: 12px;
    }

    .table-box {
        margin: 24px 16px;
        width: calc(100% - 32px);
    }

    .tr {
        flex-direction: column;
    }

    .tr .item {
        width: 100% !important;
    }

    .td {
        font-size: 14px;
        padding-left: 14px;
        min-height: 50px;
    }

    .tr .item-label {
        width: 100px !important;
    }

    .tr .item-value {
        flex: 1;
        border-right: none;
    }

    .td.jyfw {
        padding-top: 14px;
        padding-bottom: 14px;
        padding-right: 14px;
    }

    .td.site {
        padding-left: 14px;
        text-align: left;
        justify-content: flex-start;
    }

    .table-box .table-title {
        font-size: 18px;
        line-height: 60px;
    }



}