
    .category-default-container {
        max-width: 1200px;
        margin: 40px auto;
        padding: 20px;
        /*font-family: "Microsoft YaHei", sans-serif;*/
        font-family: "MyCustomFont", sans-serif;
    }

    .events-title {
        text-align: center;
        font-size: 2.2em;
        color: #2980b9;
        margin-bottom: 30px;
        border-bottom: 3px solid #2980b9;
        padding-bottom: 10px;
    }

    .events-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        margin-bottom: 40px;
    }

    .event-card {
        background: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .event-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .event-card a {
        display: block;
        padding: 20px;
        text-decoration: none;
        color: #333;
    }

    .event-card h3 {
        font-size: 1.4em;
        margin: 0 0 10px 0;
        color: #2980b9;
        line-height: 1.4;
    }

    .event-card h3:hover {
        color: #e74c3c;
    }

    .event-date {
        display: block;
        font-size: 0.9em;
        color: #7f8c8d;
        margin-bottom: 12px;
    }

    .event-excerpt {
        font-size: 0.95em;
        color: #555;
        line-height: 1.6;
        margin: 0;
    }

    .btn {
        display: inline-block;
        margin-top: 15px;
        padding: 6px 12px;
        background: #e6492d;
        color: white;
        font-size: 0.9em;
        border-radius: 4px;
        transition: background 0.3s;
    }

    .event-card a:hover .btn {
        background: #2980b9;
    }

/* 确保父容器不会影响 .pagination-wrap 的布局 */
.pagination-wrap {
    text-align: center;
    margin-top: 20px;
}


.pagination-wrap .page-numbers,
.pagination-wrap .current,
.pagination-wrap .next,
.pagination-wrap .prev {
    /* Grid 子项自动居中，无需 inline-block */
    margin: 0 !important;
    padding: 10px 16px;
    border: 1px solid #ddd;
    background: white;
    color: #3498db;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
}

.pagination-wrap .current {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

    @media (max-width: 768px) {
        .events-title {
            font-size: 1.8em;
        }
        .events-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }
        .pagination-wrap a,
        .pagination-wrap span {
            padding: 8px 12px;
            font-size: 0.9em;
        }
    }

.signup-container {
    max-width: 720px;
    margin: 32px auto;
    padding: 24px;
    background-color: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    /*font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;*/
    font-family: "MyCustomFont", sans-serif;
    color: #333;
    line-height: 1.6;
}

.signup-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background-color: #fdfdfd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.signup-table th,
.signup-table td {
    padding: 14px 16px;
    text-align: left;
    vertical-align: middle;
}

.signup-table th {
    width: 140px;
    font-weight: 600;
    color: #2c3e50;
    background-color: #f8f9fc;
    border-right: 1px solid #eaeaea;
}

.signup-table td {
    color: #555;
    background-color: #ffffff;
}

.signup-table input[type="text"] {
    width: 100%;
    max-width: 360px;
    padding: 10px 14px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fdfdfd;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.signup-table input[type="text"]:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.15);
    background-color: #fff;
}

.signup-table input[readonly] {
    background-color: #f8f9fa;
    color: #666;
    cursor: not-allowed;
}

.signup-table .description a {
    color: #1a73e8;
    text-decoration: none;
    word-break: break-all;
    font-size: 14px;
}

.signup-table .description a:hover {
    text-decoration: underline;
}

.signup-button-wrapper {
    text-align: center;
    margin-top: 16px;
}

.signup-button {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    min-width: 220px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.signup-button.is-editable {
    background-color: #e6492d;
    color: white;
    border: none;
}

.signup-button.is-editable:hover {
    background-color: #e33213;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(74, 144, 226, 0.3);
}

.signup-button.is-disabled {
    background-color: #e74c3c;
    color: white;
    cursor: not-allowed;
    opacity: 0.85;
}

.signup-button.is-disabled:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.signup-button:not(.is-editable):not(.is-disabled) {
    background-color: #e6492d;
    color: white;
    border: none;
}

.signup-button:not(.is-editable):not(.is-disabled):hover {
    background-color: #e33112;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(39, 174, 96, 0.3);
}


.card-info {
    margin-bottom: 16px;
}

.info-item {
    display: flex;
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 1.0;
}

.info-item strong {
    color: #333;
    width: 80px;
    font-weight: 500;
}

.info-item span {
    color: #555;
    flex: 1;
}



@media (max-width: 600px) {
    .signup-container {
        margin: 16px;
        padding: 16px;
    }
    .signup-table th,
    .signup-table td {
        padding: 12px 10px;
        font-size: 14px;
    }
    .signup-table input[type="text"] {
        max-width: 100%;
        font-size: 14px;
    }
    .signup-button {
        padding: 12px 24px;
        font-size: 15px;
    }
}