/* ==================== 统一样式文件 Unified Styles ==================== */

/* ==================== 1. Global Reset & Base Styles ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    font-family: 'Microsoft YaHei', Arial, -apple-system, BlinkMacSystemFont,
        'Segoe UI', Roboto, 'Helvetica Neue', 'Noto Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* ==================== 2. Layout Containers ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.about-us-page .main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
    min-height: calc(100vh - 400px);
}

.container-extra-wide {
    max-width: 1500px;
    margin: 0 auto;
    padding: 20px;
}

/* ==================== 3. Banner & Carousel Styles ==================== */
.banner-wrapper {
    width: 100%;
    height: 380px;
    position: relative;
    overflow: visible;
    z-index: 100;
}

.header-banner {
    height: 800px;
    position: relative;
    overflow: hidden;
    width: 100%;
    z-index: 90;
}

.carousel-bg,
.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.carousel-bg::after,
.banner-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.carousel-img,
.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-img.active,
.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
}

.banner-content {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 3;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ==================== 4. Header Navigation Bar Styles ==================== */
.header-nav-bar {
    width: 100%;
    height: 90px;
    opacity: 0.9;
    border-bottom: 1px solid #526073;
    position: relative;
    z-index: 100;
}

.header-nav-bar .header-container {
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-nav-bar .header-logo {
    width: 264px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-nav-bar .header-logo img {
    width: 80px;
    height: 40px;
    cursor: pointer;
}

.header-nav-bar .header-nav {
    width: 1400px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ==================== 5. Navigation Menu ==================== */
.header-nav-bar .nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.header-nav-bar .nav-menu li {
    position: relative;
}

.header-nav-bar .nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
    padding: 15px;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
    display: block;
}

.header-nav-bar .nav-menu a:hover {
    border-bottom: 2px solid #fff;
}

.header-nav-bar .nav-menu .active {
    color: white;
    border-bottom: 2px solid white;
}

.header-nav-bar .nav-menu .dropdown {
    position: relative;
    z-index: 8000;
}

.header-nav-bar .nav-menu .dropdown > a::after {
    content: ' ▼';
    font-size: 12px;
    margin-left: 3px;
    transition: transform 0.3s;
}

.header-nav-bar .nav-menu .dropdown:hover > a::after {
    transform: rotate(180deg);
}

.header-nav-bar .nav-menu .dropdown-content {
    display: none;
    position: absolute;
    top: 93%;
    left: 0;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 8001;
    margin-top: 5px;
    background-color: #fff;
}

.header-nav-bar .nav-menu .dropdown:hover .dropdown-content {
    display: block;
}

.header-nav-bar .nav-menu .dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: #333;
    font-size: 14px;
    font-weight: normal;
    border-bottom: none;
}

.header-nav-bar .nav-menu .dropdown-content a:hover {
    background: #f5f5f5;
    color: #2075ff;
    border-bottom: none;
}

/* ==================== 6. Language & Auth Buttons ==================== */
.header-nav-bar .header-actions {
    height: 90px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.header-nav-bar .language-selector {
    position: relative;
    display: inline-block;
    z-index: 8000;
}

.header-nav-bar .language-selector > a {
    color: white;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
    padding: 15px;
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    white-space: nowrap;
}

.header-nav-bar .language-selector > a::after {
    content: '';
    font-size: 12px;
    transition: transform 0.3s;
}

.header-nav-bar .language-selector:hover > a {
    border-bottom: 2px solid #fff;
}

.header-nav-bar .language-selector:hover > a::after {
    transform: rotate(180deg);
}

.header-nav-bar .language-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 8001;
    margin-top: 5px;
}

.header-nav-bar .language-selector:hover .language-dropdown {
    display: block;
}

.header-nav-bar .language-dropdown a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: normal;
    border-bottom: none;
}

.header-nav-bar .language-dropdown a:hover {
    background: #f5f5f5;
    color: #2075ff;
    border-bottom: none;
}

.header-nav-bar .auth-buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    margin-right: 60px;
}

.header-nav-bar .auth-buttons a {
    width: 70px;
    height: 30px;
    padding: 10px;
    padding-top: 0;
    background: transparent;
    cursor: pointer;
    text-align: center;
    line-height: 30px;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    border: 1px solid #fff;
    border-radius: 3px;
}

.header-nav-bar .auth-buttons button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* ==================== 7. Search Bar Styles ==================== */
.search-section {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.search-bar {
    width: 960px;
    height: 80px;
    background-color: #ffffff;
    border-radius: 10px;
    display: flex;
    position: relative;
    margin-top: 100px;
    z-index: 10;
}

.search-select {
    flex: 4;
    background-color: #2075ff;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 20px;
    border: none;
    cursor: pointer;
    outline: none;
    appearance: none;
    position: relative;
    padding-left: 15px;
}

.search-select::after {
    content: '▼';
    font-size: 12px;
    padding-right: 15px;
}

.search-select-no-arrow {
    justify-content: center;
    padding-right: 15px;
}

.search-select-no-arrow::after {
    content: '';
}

.search-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 99999;
    margin-top: 5px;
}

.search-select.active .search-dropdown {
    display: block;
}

.search-dropdown a {
    padding-left: 10px;
    text-align: left;
    display: block;
    height: 40px;
    line-height: 40px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: normal;
    transition: all 0.3s;
}

.search-dropdown a:hover {
    background: #f5f5f5;
    color: #2075ff;
}

.search-input {
    flex: 8;
    padding-left: 40px;
    width: 100%;
    height: 80px;
    line-height: 80px;
    font-size: 20px;
    border: 0;
    outline: none;
}

.search-line {
    width: 1px;
    height: 40px;
    background-color: #e0e0e0;
    align-self: center;
}

.search-button-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-button {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background-color: #2c7dff;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.search-button:hover {
    background-color: #1a5fb5;
}

.search-button svg {
    width: 18px;
    height: 18px;
    fill: white;
}

.search-button img.search-icon {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.search-clear {
    display: none;
}

.search-tags {
    width: 100%;
    height: 76px;
    display: flex;
    justify-content: center;
}

.search-tags-container {
    width: 236px;
    height: 76px;
    line-height: 76px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}

.search-tags-container a,
.search-tags-container a:link,
.search-tags-container a:visited,
.search-tags-container a:hover,
.search-tags-container a:active {
    color: white;
    text-decoration: underline white;
}

#labelContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    flex: 1;
}

/* ==================== 9. Button Styles ==================== */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
    line-height: 1.5;
}

.btn:disabled,
.btn[disabled],
button:disabled,
button[disabled],
input[type='button']:disabled,
input[type='submit']:disabled,
input[type='reset']:disabled {
    background-color: #d3d3d3;
    background: #d3d3d3;
    color: #999999;
    border-color: #cccccc;
    cursor: not-allowed;
    opacity: 0.65;
    filter: alpha(opacity=65);
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=65)';
}

.btn-disabled {
    background-color: #d3d3d3;
    background: #d3d3d3;
    color: #999999;
    border-color: #cccccc;
    cursor: not-allowed;
    opacity: 0.65;
    filter: alpha(opacity=65);
    -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=65)';
}

.btn:disabled:hover,
.btn[disabled]:hover,
.btn-disabled:hover,
button:disabled:hover,
button[disabled]:hover,
input[type='button']:disabled:hover,
input[type='submit']:disabled:hover,
input[type='reset']:disabled:hover {
    background-color: #d3d3d3;
    background: #d3d3d3;
    color: #999999;
    border-color: #cccccc;
    cursor: not-allowed;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

/* ==================== 10. Tag Styles ==================== */
.tag {
    padding: 4px 10px;
    border-radius: 4px;
    margin-right: 8px;
    font-size: 12px;
    border: 1px solid #eee;
}

.tag-blue {
    background: #ecf5ff;
    border-color: #d9ecff;
    color: #409eff;
}

.tag-green {
    background: #f0f9eb;
    border-color: #e1f3d8;
    color: #67c23a;
}

.tag-orange {
    background: #fcf6ec;
    border-color: #faecd8;
    color: #e6a23c;
}

.tag-red {
    background: #fef0f0;
    border-color: #fde2e2;
    color: #f56c6c;
}

.field-tag {
    background: #409eff;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 8px;
    font-size: 12px;
}

.tag-label {
    padding: 1px 10px;
    font-weight: 400;
    font-size: 10px;
    border-radius: 3px;
    display: inline-block;
    background: #f5f5f5;
}

.tag-label.tag-blue {
    border: 1px solid #d9ecff;
    background: #ecf5ff;
    color: #409eff;
}

.tag-label.tag-green {
    background: #f0f9eb;
    border: 1px solid #e1f3d8;
    color: #67c23a;
}

.tag-label.tag-orange {
    background: #fcf6ec;
    border: 1px solid #faecd8;
    color: #e6a23c;
}

.tag-label.tag-red {
    background: #fef0f0;
    border: 1px solid #fde2e2;
    color: #f56c6c;
}

/* ==================== 11. Pagination Styles ==================== */
.pagination {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pagination-info {
    font-size: 14px;
    color: #606266;
    margin-right: 10px;
}

.pagination-sizes select {
    padding: 5px 10px;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 5px;
}

.pagination-controls button,
.pagination-btn {
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    border: 1px solid #dcdfe6;
    background: white;
    color: #606266;
    font-size: 14px;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pagination-controls button:hover:not(:disabled),
.pagination-btn:hover:not(.disabled) {
    border-color: #409eff;
    color: #409eff;
}

.pagination-controls button:disabled,
.pagination-btn.disabled {
    background: #f5f7fa;
    border-color: #ebeef5;
    color: #c0c4cc;
    cursor: not-allowed;
}

.pagination-controls button.active,
.pagination-btn.active {
    background: #409eff;
    border-color: #409eff;
    color: white;
}

.pagination-ellipsis {
    padding: 0 8px;
    color: #606266;
}

.pagination-jump {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #606266;
}

.pagination-jump input {
    width: 50px;
    padding: 5px;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    text-align: center;
}

.pagination-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-total {
    color: #606266;
    font-size: 14px;
    margin-right: 10px;
}

.pagination-size-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #606266;
    font-size: 14px;
    margin-left: 10px;
}

.pagination-size-selector select {
    padding: 4px 8px;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    background: white;
    color: #606266;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s;
}

.pagination-size-selector select:hover {
    border-color: #409eff;
}

.pagination-size-selector select:focus {
    border-color: #409eff;
}

/* =========== 页面基础布局 ============== */
.header {
    width: 100%;
    height: 420px;
    position: relative;
    overflow: visible;
    z-index: 2000;
}

.header .header-carousel-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.header .header-carousel-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.header .carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.header .carousel-img.active {
    opacity: 1;
}

.header .header-content {
    position: relative;
    z-index: 1000;
    width: 100%;
    height: 100%;
}

.header .title-section {
    text-align: center;
    color: white;
    margin: 15px auto 0;
    max-width: 1200px;
}

.header .title-section .title-slogan {
    width: 100%;
    height: 118px;
    text-align: center;
    line-height: 118px;
    color: #fff;
    font-weight: bold;
    font-size: 40px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
    margin: 0;
}

.main {
    width: 100%;
    min-height: 100vh;
    background-color: #ffffff;
    padding-top: 0;
}

.main #pagination-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-right: 25px;
}

.footer {
    width: 100%;
    height: auto;
    background-color: #0c4a97;
    padding: 15px 0;
    box-sizing: border-box;
    position: relative;
    clear: both;
}

.footer .footer-content {
    margin: 0 auto;
    color: #ffffff;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
}

.footer .footer-content p {
    margin: 5px 0;
    line-height: 1.6;
    color: #fff;
}

.footer .footer-root {
    width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding-top: 10px;
    padding-bottom: 25px;
    box-sizing: border-box;
}

.footer .footer-root .root-top {
    width: 100%;
    height: 70px;
    border-bottom: 1px solid #406fa8;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.footer .footer-root .root-top img {
    width: 241px;
    height: 43px;
}

.footer .footer-root .root-center {
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
}

.footer .footer-root .center-left {
    width: 65%;
    height: 90px;
    line-height: 100px;
    font-size: 16px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .footer-root .center-left .line {
    width: 1px;
    height: 25px;
    background-color: #7291b7;
    margin: auto 0;
}

.footer .footer-root .center-left .test {
    cursor: pointer;
}

.footer .footer-root .center-right {
    line-height: 100px;
    font-size: 20px;
    color: #fff;
}

.footer .footer-root .footer-bottom {
    width: 100%;
    height: 67px;
    display: flex;
    justify-content: space-between;
}

.footer .footer-root .bottom-left {
    flex: 1;
}

.footer .footer-root .left-top {
    width: 388px;
    height: 17px;
    line-height: 17px;
    display: flex;
    justify-content: space-between;
}

.footer .footer-root .top-item {
    font-size: 12px;
    color: #6f94c2;
}

.footer .footer-root .left-bottom {
    width: 584px;
    height: 17px;
    line-height: 17px;
    margin-bottom: 30px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.footer .footer-root .bottom-item {
    font-size: 12px;
    color: #6f94c2;
}

.footer .footer-root .bottom-right {
    width: 198px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .footer-root .footer-img {
    width: 81px;
    height: 80px;
    cursor: pointer;
}

.building-content {
    width: 100%;
    height: 500px;
    line-height: 500px;
    text-align: center;
    font-size: 40px;
    color: #909399;
}

.article-content {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.article-content .article-title {
    font-weight: 600;
    font-size: 23px;
    color: #303133;
    text-align: center;
    margin-bottom: 16px;
}

.article-content .article-meta {
    text-align: center;
    font-size: 12px;
    color: #909399;
    margin-bottom: 30px;
}

.article-content .article-meta span {
    margin: 0 16px;
}

.article-content .article-body {
    line-height: 1.9;
    font-size: 16px;
    color: #303133;
}

.article-content .article-body img {
	max-width: 100%;
}

.article-content .article-link {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e8eaef;
    font-size: 14px;
    color: #606266;
}

.article-content .article-link div {
    margin-bottom: 8px;
}

.article-content .article-link a {
    color: #1765e5;
    text-decoration: none;
    word-break: break-all;
}

.article-content .article-link a:hover {
    text-decoration: underline;
}


/* ==================== Modal Styles ==================== */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    width: 95%;
    max-width: 1200px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e8eaed;
}

.modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.modal-close:hover {
    color: #333;
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.modal-filters {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 20px;
    margin-bottom: 16px;
    align-items: flex-end;
}

.modal-filters-row2 {
    display: grid;
    grid-template-columns: 1fr 1fr 120px;
    gap: 20px;
    margin-bottom: 24px;
    align-items: flex-end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group.date-range {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group.date-range .date-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-group label {
    font-size: 14px;
    color: #606266;
    font-weight: 400;
}

.filter-group span {
    align-self: center;
    color: #606266;
    margin: 0 4px;
}

.filter-search-btn {
    padding: 0 20px;
    height: 32px;
    line-height: 30px;
    background-color: #409eff;
    color: #fff;
    border: 1px solid #409eff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.filter-search-btn:hover {
    background-color: #66b1ff;
    border-color: #66b1ff;
}

.filter-search-btn:active {
    background-color: #3a8ee6;
    border-color: #3a8ee6;
}

.modal-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.modal-table thead {
    background: #fafbff;
}

.modal-table thead tr {
    text-align: center;
}

.modal-table th,
.modal-table td {
    padding: 12px 16px;
    text-align: center !important;
    border-bottom: 1px solid #e8eaed;
    font-size: 14px;
}

.modal-table th {
    font-weight: 600;
    color: #222;
    text-align: center !important;
}

.modal-table td {
    color: #606266;
}

.modal-table tbody tr:hover {
    background: #f5f7fa;
}

.modal-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 16px 0;
}

.pagination-info {
    font-size: 14px;
    color: #606266;
}

.pagination-info #totalRecords {
    font-weight: 600;
    color: #222;
}

.pagination-controls {
    display: flex;
    gap: 8px;
}

.page-btn {
    padding: 6px 12px;
    border: 1px solid #dcdfe6;
    background: #fff;
    color: #606266;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    min-width: 36px;
}

.page-btn:hover {
    color: #1765e5;
    border-color: #1765e5;
}

.page-btn.active {
    background: #1765e5;
    color: #fff;
    border-color: #1765e5;
}

.modal-footer-banner {
    background-image: url('./assets/image/experimentFooter.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding: 24px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.modal-footer-banner > span {
    font-size: 16px;
    color: rgba(6, 78, 219, 1);
    font-weight: 500;
}

.logging {
    color: rgba(48, 49, 51, 1);
}

.login-prompt-btn {
    margin-left: 20px;
    width: 112px;
height: 32px;
    padding: 4px 15px;
    background: #409eff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(64, 158, 255, 0.3);
    transition: all 0.3s ease;
}

.login-prompt-btn:hover {
    background: #66b1ff;
    box-shadow: 0 4px 12px rgba(64, 158, 255, 0.4);
    transform: translateY(-1px);
}

.login-prompt-btn:active {
    transform: translateY(0);
}

/* Element Plus overrides for modal */
/* Fix z-index for date picker popups */
.el-picker__popper,
.el-popper {
    z-index: 10001 !important;
}

/* Prevent date picker from affecting table layout */
.modal-table {
    position: relative;
    z-index: 1;
}

.modal-body {
    position: relative;
}

.modal-body .el-input {
    width: 100%;
    --el-input-height: 32px;
}

.modal-body .el-input__wrapper {
    box-shadow: 0 0 0 1px #dcdfe6 inset;
    padding: 1px 11px;
}

.modal-body .el-input__wrapper:hover {
    box-shadow: 0 0 0 1px #c0c4cc inset;
}

.modal-body .el-input__wrapper.is-focus {
    box-shadow: 0 0 0 1px #409eff inset;
}

.modal-body .el-input__inner {
    height: 30px;
    line-height: 30px;
}

.modal-body .el-date-editor {
    width: 100%;
    --el-date-editor-width: 100%;
}

.modal-body .el-date-editor.el-input {
    width: 100%;
}

.modal-body .el-date-editor .el-input__wrapper {
    width: 100%;
}

.modal-body .el-button {
    height: 32px;
    padding: 8px 15px;
}

.modal-body .el-button--primary {
    background-color: #409eff;
    border-color: #409eff;
}

.modal-body .el-button--primary:hover {
    background-color: #66b1ff;
    border-color: #66b1ff;
}

.modal-body .el-button--primary:active {
    background-color: #3a8ee6;
    border-color: #3a8ee6;
}

.modal-filters .date-inputs .el-input,
.modal-filters .date-inputs .el-date-editor {
    flex: 1;
    min-width: 0;
}

.modal-filters-row2 .el-button {
    height: 32px;
    padding: 0 20px;
    align-self: flex-end;
}

.modal-filters-row2 .filter-group .el-date-editor {
    width: 100%;
}

/* Fix date range separator alignment */
.modal-filters .date-inputs {
    width: 100%;
}

.modal-filters .date-inputs span {
    flex-shrink: 0;
    line-height: 32px;
}

/* ==================== Custom Input Component Styles ==================== */
/* 自定义输入框基础样式 */
.custom-input {
    width: 100%;
    height: 32px;
    padding: 0 12px;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    font-size: 14px;
    color: #606266;
    background-color: #fff;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.custom-input:hover {
    border-color: #c0c4cc;
}

.custom-input:focus {
    outline: none;
    border-color: #409eff;
}

.custom-input::placeholder {
    color: #c0c4cc;
}

/* 日期选择器样式 */
.custom-date-input {
    position: relative;
    display: inline-block;
    width: 100%;
}

.custom-date-input input[type="text"] {
    width: 100%;
    height: 32px;
    padding: 0 30px 0 12px;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    font-size: 14px;
    color: #606266;
    background-color: #fff;
    transition: border-color 0.2s;
    box-sizing: border-box;
    cursor: text;
}

.custom-date-input input[type="date"],
.custom-date-input input[type="datetime-local"] {
    width: 100%;
    height: 32px;
    padding: 0 30px 0 12px;
    border: 1px solid #dcdfe6;
    border-radius: 4px;
    font-size: 14px;
    color: #606266;
    background-color: #fff;
    transition: border-color 0.2s;
    box-sizing: border-box;
    cursor: pointer;
}

/* 原生日期选择器图标 - 扩大到整个输入框 */
.custom-date-input input[type="date"]::-webkit-calendar-picker-indicator,
.custom-date-input input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

/* 自定义日期图标 */
.custom-date-input::after {
    content: '';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23909399" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.custom-date-input:hover::after {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23409eff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="4" width="18" height="18" rx="2" ry="2"></rect><line x1="16" y1="2" x2="16" y2="6"></line><line x1="8" y1="2" x2="8" y2="6"></line><line x1="3" y1="10" x2="21" y2="10"></line></svg>');
}

.custom-date-input:hover input {
    border-color: #c0c4cc;
}

.custom-date-input input:focus {
    outline: none;
    border-color: #409eff;
}

/* 日期范围选择器 */
.custom-date-range {
    display: flex;
    align-items: center;
    gap: 8px;
}

.custom-date-range input {
    flex: 1;
}

.custom-date-range .separator {
    color: #606266;
    font-size: 14px;
}

/* 按钮样式 */
.custom-button {
    display: inline-block;
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #dcdfe6;
    background-color: #fff;
    color: #606266;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    box-sizing: border-box;
}

.custom-button:hover {
    color: #409eff;
    border-color: #c6e2ff;
    background-color: #ecf5ff;
}

.custom-button.primary {
    background-color: #409eff;
    border-color: #409eff;
    color: #fff;
}

.custom-button.primary:hover {
    background-color: #66b1ff;
    border-color: #66b1ff;
    color: #fff;
}

.custom-button:active {
    opacity: 0.8;
}
