
body {
    /*font-family: 'Arial', sans-serif;*/
    font-family: "MyCustomFont", sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #931e1e;
   /* background-color: #f9f9f9;*/
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 导航栏 */
.navbar {
    background-color: #e74c3c;
    color: white;
    padding: 10px 0;
    text-align: center;
}

.navbar a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
}

/* 文章样式 */
.entry {
    background-color: white;
    border-radius: 5px;
   /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
    margin-bottom: 20px;
    /*padding: 20px;*/
}

.entry h1 {
    font-size: 24px;
    margin-bottom: 10px;
    /*text-align: center;*/
}

.entry .entry-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}


.entry .entry-content p{
    margin-bottom: 20px;
    line-height: 1.8; /* 确保段落内的行距也增加 */
}
.entry .entry-footer {
    text-align: right;
    margin-top: 10px;
}

/* 编辑链接 */
.entry .entry-footer a {
    color: #e74c3c;
    text-decoration: none;
}

.entry .entry-footer a:hover {
    text-decoration: underline;
}




.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;
    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: 1px 1px 5px 15px;
    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);
}

@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;
    }
}
