.jxufe-container {
    max-width: 1600px;
    min-height: 300px;
    margin: 30px auto;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

/* 导航路径样式 */
.jxufe-breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.jxufe-breadcrumb a {
    color: #263c92;
    text-decoration: none;
}

.jxufe-breadcrumb a:hover {
    text-decoration: underline;
}

/* 标题样式 */
.jxufe-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0;
    color: #333;
}

/* 日期样式 */
.jxufe-date {
    text-align: right;
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
}

.jxufe-content {
    margin: 0 auto;
    padding: 40px 60px; /* 增加左右padding */
    background-color: #fff;
    max-width: 100%;
}

/* 内容段落样式 */
.jxufe-content p {
    margin-bottom: 20px;
    text-align: justify;
    text-indent: 2em;
}

/* 小标题样式 */
.jxufe-subtitle {
    font-weight: bold;
    font-size: x-large;
    margin: 25px 0 15px 0;
    color: #273e93;
    border-left: 3px solid #263c92;
    padding-left: 10px;
}

/* 列表样式 */
.jxufe-list {
    margin-left: 40px;
    margin-bottom: 20px;
}

.jxufe-list li {
    margin-bottom: 8px;
}

.jxufe-img {
    width: 60%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

.jxufe-writer {
    text-align: right;
    color: #666;
    font-size: 14px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed #eee;
    font-style: italic;
}

/* coming soon 样式 */
.coming-soon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding: 40px 20px;
}

.coming-soon {
    text-align: center;
    max-width: 600px;
    padding: 60px 40px;
    border-radius: 20px;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.icon-wrapper {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.progress-icon {
    width: 80px;
    height: 80px;
    animation: spin 3s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.coming-soon-title {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #273e93, #273e93);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-weight: 700;
}

.coming-soon-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-top: 20px;
}

/* Table Container */
.jxufe-table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 10px 0 20px 0;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Table Style */
.jxufe-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 800px;
}

/* Table Header */
.jxufe-table thead {
    background-color: #273e93;
    color: white;
}

.jxufe-table th {
    padding: 12px 15px;
    text-align: left;
    position: sticky;
    top: 0;
    font-weight: 600;
}

/* Table Body */
.jxufe-table td {
    padding: 10px 15px;
    border-bottom: 1px solid #eaeaea;
    vertical-align: top;
}

/* Alternate Row Colors */
.jxufe-table tbody tr:nth-child(even) {
    background-color: #f8f9ff;
}

/* Hover Effect */
.jxufe-table tbody tr:hover {
    background-color: #e6e9ff;
}

/* Cell Content */
.jxufe-table td {
    white-space: normal;
    max-width: 300px;
    word-wrap: break-word;
}

/* First Column Emphasis */
.jxufe-table td:first-child {
    font-weight: 500;
    color: #273e93;
}

/* Show More 链接样式 */
.show-more-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #273e93 0%, #1e2d6f 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(39, 62, 147, 0.2);
    text-align: center;
    letter-spacing: 0.5px;
}

.show-more-link:hover {
    background: linear-gradient(135deg, #1e2d6f 0%, #273e93 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 62, 147, 0.3);
    padding-right: 28px;
}

.show-more-link:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(39, 62, 147, 0.2);
}

/* ========================================
   响应式布局优化
   ======================================== */

/* 平板尺寸 (1024px 以下) */
@media (max-width: 1024px) {
    .jxufe-container {
        padding: 25px;
        margin: 20px auto;
    }

    .jxufe-content {
        padding: 30px 40px; /* 平板上减少左右padding */
    }

    .jxufe-title {
        font-size: 22px;
    }

    .jxufe-subtitle {
        font-size: large;
    }
}

/* 平板和手机 (768px 以下) */
@media (max-width: 768px) {
    .jxufe-container {
        padding: 20px;
        margin: 15px auto;
    }

    .jxufe-content {
        padding: 20px 30px; /* 手机上进一步减少左右padding */
    }

    .jxufe-title {
        font-size: 20px;
        margin: 15px 0;
    }

    .jxufe-breadcrumb {
        font-size: 13px;
    }

    .jxufe-subtitle {
        font-size: medium;
        margin: 20px 0 12px 0;
    }

    .jxufe-list {
        margin-left: 25px;
    }

    .jxufe-img {
        width: 80%;
        max-width: 100%;
    }

    .jxufe-table th,
    .jxufe-table td {
        padding: 8px 10px;
        font-size: 13px;
    }

    .coming-soon-container {
        min-height: 300px;
        padding: 30px 20px;
    }

    .coming-soon {
        padding: 40px 25px;
    }

    .coming-soon-title {
        font-size: 1.8rem;
    }

    .progress-icon {
        width: 60px;
        height: 60px;
    }

    .coming-soon-text {
        font-size: 1rem;
    }

    .show-more-link {
        max-width: 60%;
        font-size: 13px;
        padding: 8px 20px;
        margin-top: 15px;
    }
}

/* 小屏手机 (480px 以下) */
@media (max-width: 480px) {
    .jxufe-container {
        padding: 15px;
        margin: 10px auto;
    }

    .jxufe-content {
        padding: 15px 20px; /* 小屏手机上最小左右padding */
    }

    .jxufe-content p {
        text-indent: 1.5em;
        font-size: 14px;
    }

    .jxufe-title {
        font-size: 18px;
    }

    .jxufe-breadcrumb {
        font-size: 12px;
    }

    .jxufe-date {
        font-size: 12px;
    }

    .jxufe-subtitle {
        font-size: 16px;
        padding-left: 8px;
        border-left-width: 2px;
    }

    .jxufe-list {
        margin-left: 20px;
        font-size: 14px;
    }

    .jxufe-img {
        width: 100%;
    }

    .jxufe-writer {
        font-size: 12px;
    }

    .show-more-link {
        font-size: 12px;
        padding: 7px 18px;
        margin-top: 12px;
        width: 90%;
        display: block;
    }

    .jxufe-table {
        font-size: 12px;
        min-width: 600px;
    }

    .jxufe-table th,
    .jxufe-table td {
        padding: 6px 8px;
    }
}

/* 超小屏幕 (360px 以下) */
@media (max-width: 360px) {
    .jxufe-content {
        padding: 15px; /* 超小屏上进一步减少padding */
    }
}