body.openinfo-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.openinfo-page > main {
    flex: 1 0 auto;
}

.openinfo-page .portal-section {
    padding: 42px 0 72px;
}

.openinfo-container {
    width: 1260px;
}

.openinfo-page-title {
    margin-bottom: 22px;
}

.openinfo-page-title h1 {
    margin: 0;
    color: #222;
    font-size: 30px;
    font-family: "Source Han Sans CN-Regular", "PingFang SC", "Microsoft YaHei", sans-serif;
    font-weight: 400;
    line-height: 1.2;
}

.openinfo-search {
    display: flex;
    align-items: stretch;
    width: 100%;
    margin-bottom: 18px;
}

.openinfo-search-field {
    flex: 1;
}

.openinfo-search input {
    width: 100%;
    height: 44px;
    padding: 0 18px;
    border: 1px solid #e3e3e3;
    border-right: 0;
    border-radius: 0;
    background: #fff;
    color: #333;
    font-size: 14px;
    outline: none;
    box-shadow: none;
}

.openinfo-search input::placeholder {
    color: #c0c0c0;
}

.openinfo-search input:focus {
    border-color: #e3e3e3;
}

.openinfo-search-btn {
    flex: 0 0 96px;
    height: 44px;
    border: 0;
    border-radius: 0;
    background: #f17930;
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background .2s ease;
}

.openinfo-search-btn:hover {
    background: #e56f28;
}

.openinfo-tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    min-height: 56px;
    padding: 10px 0 14px;
    margin-bottom: 12px;
}

.openinfo-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 24px;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    background: #fff;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.openinfo-tab.active {
    background: #f2f2f2;
    border-color: #e0e0e0;
    color: #333;
}

.openinfo-tab:hover {
    border-color: #d8d8d8;
    color: #333;
}

.openinfo-table-wrap {
    overflow-x: auto;
    background: #fff;
}

.openinfo-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.openinfo-table thead tr {
    background: #fdf1e8;
}

.openinfo-table th {
    padding: 22px 10px;
    border: 0;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
}

.openinfo-table td {
    padding: 24px 10px;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
    word-break: break-all;
    line-height: 1.5;
}

.openinfo-table tbody tr:last-child td {
    border-bottom: 0;
}

.openinfo-table tbody tr:hover td {
    background: #fcfcfc;
}

.openinfo-table .col-type { width: 19%; }
.openinfo-table .col-name { width: 17%; }
.openinfo-table .col-grade { width: 10%; font-weight: 600; }
.openinfo-table .col-status { width: 12%; }
.openinfo-table .col-date { width: 14%; color: #666; }
.openinfo-table .col-action { width: 14%; }

.openinfo-status {
    color: #00a64f;
    font-weight: 500;
}

.openinfo-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.openinfo-action-link {
    color: #f17930;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    line-height: 1.3;
}

.openinfo-action-link:hover {
    color: #e56f28;
    text-decoration: underline;
}

.openinfo-loading {
    padding: 72px 0 !important;
    color: #999;
}

.openinfo-empty {
    display: none;
    text-align: center;
    padding: 72px 0;
    color: #999;
    font-size: 15px;
}

.openinfo-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.openinfo-pagination .page-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    background: #fff;
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.openinfo-pagination .page-item.active,
.openinfo-pagination .page-item:hover {
    border-color: #f17930;
    color: #f17930;
}

.openinfo-pagination .page-item.disabled {
    color: #ccc;
    pointer-events: none;
}

.openinfo-detail-head {
    margin-bottom: 24px;
}

.openinfo-back {
    display: inline-block;
    margin-bottom: 12px;
    color: #666;
    font-size: 14px;
    text-decoration: none;
}

.openinfo-back:hover {
    color: #f17930;
}

.openinfo-detail-card {
    max-width: 720px;
    padding: 28px 32px;
    border: 1px solid #f0f0f0;
    background: #fff;
    box-shadow: 0 1px 16px rgba(153, 153, 153, .08);
}

.openinfo-detail-card dl {
    margin: 0;
}

.openinfo-detail-card dt {
    margin: 0 0 6px;
    color: #999;
    font-size: 13px;
}

.openinfo-detail-card dd {
    margin: 0 0 20px;
    color: #333;
    font-size: 16px;
}

.openinfo-detail-actions {
    margin-top: 8px;
    padding-top: 20px;
    border-top: 1px solid #f2f2f2;
}

@media (max-width: 1280px) {
    .openinfo-container {
        width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 960px) {
    .openinfo-page .portal-section {
        padding: 28px 0 48px;
    }

    .openinfo-page-title h1 {
        font-size: 24px;
    }

    .openinfo-tabs {
        gap: 10px;
    }

    .openinfo-tab {
        padding: 0 14px;
        font-size: 13px;
    }

    .openinfo-table th,
    .openinfo-table td {
        padding: 14px 6px;
        font-size: 13px;
    }
}
