﻿
/* 分割线样式 */
.top-divider {
    height: 4px;
    background-color: #f5f5f5;
}

.h2-divider {
    height: 1px;
    background-color: #f5f5f5;
    margin-top: 10px;
}

/* 标题样式 */
.custom-h4 {
    background-color: #ffffff;
    border-color: #e7eaec;
    border-image: none;
    border-style: solid solid none;
    border-width: 2px 0 0;
    /*color: inherit;*/
    color: #4d4d4d;
    margin-bottom: 0;
    padding: 15px 15px 7px;
    min-height: 48px;
    margin-top: 0;
}

p {
    /* margin: 0 0 10px; */
}

/* 调整分页样式 */
.page {
    margin-bottom: 20px;
}

.page-number {
    /* 如果有特定的样式，可以在这里添加 */
}

.Page {
    position: relative;
    width: 100%;
    height: 70px; /* 使页面组件占据整个视口高度 */
}

.PageNumber {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* 可选：添加样式 */
}

    .PageNumber a {
        display: inline-block; /* 将a标签转换为块级元素 */
        width: 30px; /* 设置外框宽度 */
        height: 30px; /* 设置外框高度 */
        border: 1px solid #f5f5f5; /* 添加边框 */

        text-align: center; /* 文字居中 */
        line-height: 25px; /* 行高与外框高度相等，确保文字垂直居中 */
        text-decoration: none; /* 取消链接下划线 */
        color: #999; /* 可选：设置文字颜色 */
    }

    .PageNumber span {
        display: inline-block; /* 将a标签转换为块级元素 */
        width: 30px; /* 设置外框宽度 */
        height: 30px; /* 设置外框高度 */
        border: 1px solid #f5f5f5; /* 添加边框 */
        background-color: #4285f4;
        text-align: center; /* 文字居中 */
        line-height: 25px; /* 行高与外框高度相等，确保文字垂直居中 */
        text-decoration: none; /* 取消链接下划线 */
        color: #fff; /* 可选：设置文字颜色 */
    }

/* 表格头部样式 */
.table-header {
    background-color: #f5f5f5; /* 灰色背景 */
    font-size: 14px; /* 缩小标题文字 */
    height: 60px;
    max-width: 100%; /* 通过计算实际宽度减去40px来设置最大宽度 */
    text-align: center; /* 将表头文本居中 */
}

/* 表格样式 */
.ContentListTable {
    width: 98%; /* 宽度为100% */
    margin: auto;
    margin-top: 10px;
}

.Rows {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

a {
    color: #4d4d4d;
    text-decoration: none;
}

    a.Action {
        width: 90px;
        height: 35px;
        line-height: 24px;
        margin: auto;
        font-size: 13px;
        font-weight: normal;
        color: #fff;
        border: none;
        outline: none;
        background-position: 0 -150px;
        display: inline-block;
        text-decoration: none;
        text-align: center;
        background-color: #4285f4;
        display: inline-flex; /* 使用flex布局 */
        justify-content: center; /* 水平居中 */
        align-items: center; /* 垂直居中 */
        border-radius: 3px; /* 添加圆角 */
    }


.Submit {
    width: 81px;
    height: 24px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    border: none;
    outline: none;
    background-position: 0 -150px;
    background-color: #4285f4;
    border-radius: 5px; /* 添加圆角 */
}
