@import "./header-tab.css";

/*.sheet {}*/
.sheet-format {
    width: 1200px;
    margin: 0 auto;
    padding: 30px;
}
.sheet .container {
    padding: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.sheet .block-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 96px;
}

.sheet .block-container .block-title {
    margin-bottom: 60px;
}

.sheet .block-container .block-title .title {
    font-size: 28px;
    font-weight: 500;
    color: #000000;
}

.sheet .block-container .block-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sheet .block-container .block-content .block-item {
    flex: 1;
    min-width: 20%;
    height: 226px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 65, 144, 0.12);
    margin-right: 28px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*cursor: pointer;*/
}
.block-item:hover {
    box-shadow: 0px 6px 18px 0px rgba(0, 65, 144, 0.12);
}
.sheet .block-container .block-content .block-item:last-child {
    margin-right: 0px;
}

.sheet .block-container .block-content .block-item img.icon {
    width: 46px;
    height: 46px;
}

.sheet .block-container .block-content .block-item .title {
    margin-top: 20px;
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    line-height: 30px;
}


.sheet .list-container {}

.sheet .list-container .table-container {}

.sheet .table-container .table-row {
    width: 100%;
    display: flex;
}
.sheet .table-container .table-row .tr {
    flex: 1;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 0 10px 0 15px;
    justify-content: center;
}
.sheet .table-container .table-row .tr:nth-child(3) {
    min-width: 200px;
}
.sheet .table-container .table-row .tr:last-child {
    width: auto;
}
.sheet .table-container .table-header-row {
    height: 62px;
    background: #F3F4F5;
}
.sheet .table-container .table-header-row .tr {
    color: #000000;
}

.sheet .table-container .table-body-row {
    height: 58px;
    background: #FFFFFF;
    border-bottom: 1px solid #E3EAF1;
}
.sheet .table-container .table-body-row .tr {
    color: #8090A6;
    overflow: hidden;
}
.sheet .table-container .table-body-row .tr p{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sheet .table-container .table-body-row .action-btn {
    height: 32px;
    line-height: 32px;
    background: #004190;
    color: #FFFFFF;
    min-width: 80px;
    text-align: center;
    cursor: pointer;
}

.sheet .list-container .page-container {
    margin-top: 50px;
}

.post-crumbs{
    max-width: 100%;
    height:36px;
    line-height: 36px;
    background: #F3F4F5;
}
.post-crumbs-ml{
    max-width: 1240px;
    margin: 0 auto;
}
.post-crumbs-ml :last-child{
    color: black;
    cursor: default;
}