/* _content/XiMenJiaoCheng/Views/Course/Article.cshtml.rz.scp.css */
#course-two[b-chklgt03yl], #course-three[b-chklgt03yl] {
    line-height: 2rem;
}


.bg-title[b-chklgt03yl] {
    background: #FFE0B2;
}
/* _content/XiMenJiaoCheng/Views/Home/Error.cshtml.rz.scp.css */
*[b-lj43x4r18h] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root[b-lj43x4r18h] {
    --primary-color: #4a6de5;
    --error-color: #e53e3e;
    --light-error-color: #fed7d7;
    --text-color: #2d3748;
    --text-light: #718096;
    --bg-color: #f7fafc;
    --card-bg: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --radius: 8px;
}

body[b-lj43x4r18h] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container[b-lj43x4r18h] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* 主内容区 */
.main-content[b-lj43x4r18h] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    user-select: none;
}

.error-card[b-lj43x4r18h] {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 40px;
    width: 100%;
    max-width: 500px;
    text-align: center;
    margin: auto;
}

/* 错误图标 */
.error-icon[b-lj43x4r18h] {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background-color: var(--light-error-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .error-icon[b-lj43x4r18h]::before {
        content: "!";
        font-size: 36px;
        font-weight: bold;
        color: var(--error-color);
    }

/* 错误标题 */
.error-title[b-lj43x4r18h] {
    font-size: 28px;
    font-weight: 600;
    color: var(--error-color);
    margin-bottom: 12px;
}

/* 错误信息 */
.error-message[b-lj43x4r18h] {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.7;
}

/* 按钮样式 */
.button-group[b-lj43x4r18h] {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.button[b-lj43x4r18h] {
    padding: 12px 24px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border: none;
    min-width: 120px;
}

.button-primary[b-lj43x4r18h] {
    background-color: var(--primary-color);
    color: white;
}

    .button-primary:hover[b-lj43x4r18h] {
        background-color: #3a5bc9;
        transform: translateY(-1px);
    }

.button-outline[b-lj43x4r18h] {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

    .button-outline:hover[b-lj43x4r18h] {
        background-color: rgba(74, 109, 229, 0.05);
    }

/* 页脚 */
footer[b-lj43x4r18h] {
    background-color: var(--card-bg);
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

.footer-content[b-lj43x4r18h] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.home-link[b-lj43x4r18h] {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

    .home-link:hover[b-lj43x4r18h] {
        text-decoration: underline;
    }

.copyright[b-lj43x4r18h] {
    color: var(--text-light);
    font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 600px) {
    .error-card[b-lj43x4r18h] {
        padding: 30px 20px;
    }

    .error-title[b-lj43x4r18h] {
        font-size: 24px;
    }

    .error-message[b-lj43x4r18h] {
        font-size: 15px;
    }

    .button-group[b-lj43x4r18h] {
        flex-direction: column;
    }

    .button[b-lj43x4r18h] {
        width: 100%;
    }
}

/* 动画效果 */
@keyframes fadeIn-b-lj43x4r18h {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.error-card[b-lj43x4r18h] {
    animation: fadeIn-b-lj43x4r18h 0.5s ease-out;
}

/* 暗色模式支持 */
@media (prefers-color-scheme: dark) {
    :root[b-lj43x4r18h] {
        --primary-color: #5a86ff;
        --error-color: #fc8181;
        --light-error-color: #2d2222;
        --text-color: #e2e8f0;
        --text-light: #a0aec0;
        --bg-color: #1a202c;
        --card-bg: #2d3748;
    }

    footer[b-lj43x4r18h] {
        border-top-color: #4a5568;
    }
}
/* _content/XiMenJiaoCheng/Views/Manage/Article.cshtml.rz.scp.css */
table tr td:nth-child(3)[b-nojqvow8dr] {
    max-width: 400px;
    word-break:break-all;
    line-break:anywhere;
}
/* _content/XiMenJiaoCheng/Views/Shared/Components/ArticleShow/Default.cshtml.rz.scp.css */
.content-directory[b-s1ir3ldycg] {
    font-size: 0.85rem;
    border: 1px solid lightgrey;
    margin: 15px 0;
    cursor: default;
    user-select: none;
    background-color: #F6F6F6;
    color: #444444;
    box-shadow: 1px 1px 1px #F6F6F6;
    overflow-x: auto;
}

    .content-directory h3[b-s1ir3ldycg] {
        padding-left: 10px;
        background-color: #E6E6E6;
        font-size: 1.1em;
        line-height: 2.4rem;
        width: 100%;
        color: purple;
    }



    .content-directory p[b-s1ir3ldycg] {
        padding-left: 15px;
        color: #2584D7;
        word-wrap: normal;
    }

        .content-directory p:hover[b-s1ir3ldycg] {
            background: #DFDFDF;
        }

.update-box[b-s1ir3ldycg] {
    border: 1px solid #F44336;
    padding: 0.6rem;
    color: #F44336;
    background: #fff0f0;
}
/* _content/XiMenJiaoCheng/Views/Shared/Components/CourseList/Default.cshtml.rz.scp.css */

.content-directory[b-68pu6qmz7h] {
    font-size: 0.85rem;
    border: 1px solid lightgrey;
    margin: 15px 0;
    cursor: default;
    user-select: none;
    background-color: #F6F6F6;
    color: #444444;
    box-shadow: 1px 1px 1px #F6F6F6;
    overflow-x: auto;
}

    .content-directory h3[b-68pu6qmz7h] {
        padding-left: 10px;
        background-color: #E6E6E6;
        font-size: 1.1em;
        line-height: 2.4rem;
        width: 100%;
        color: purple;
    }



    .content-directory p[b-68pu6qmz7h] {
        padding-left: 15px;
        color: #2584D7;
        word-wrap: normal;
    }

        .content-directory p:hover[b-68pu6qmz7h] {
            background: #DFDFDF;
        }

.update-box[b-68pu6qmz7h] {
    border: 1px solid #F44336;
    padding: 0.6rem;
    color: #F44336;
    background: #fff0f0;
}
/* _content/XiMenJiaoCheng/Views/Shared/Components/Pagination/Default.cshtml.rz.scp.css */
.pg-box[b-6w37hpzolw] {
    margin: 1rem 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    gap: 0.175rem;
}

.pre-btn[b-6w37hpzolw] {
    border-radius: 0.5rem 0 0 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.next-btn[b-6w37hpzolw] {
    border-radius: 0 0.5rem 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pg-a[b-6w37hpzolw] {
    display: block;
    margin: 0 1rem 0 1rem;
    color: #FFF;
}
/* _content/XiMenJiaoCheng/Views/Shared/_HomeLine.cshtml.rz.scp.css */
.title[b-x3phoxeo6f] {
    position: relative;
    text-align: center;
    overflow: hidden;
    font-size: 14px;
    color: #999;
}

    .title[b-x3phoxeo6f]::before, .title[b-x3phoxeo6f]::after {
        content: '';
        display: inline-block;
        width: 100%;
        height: 1px;
        position: absolute;
        background: #ccc;
        top: 50%;
    }

    .title[b-x3phoxeo6f]::before {
        margin-left: -10px;
        transform: translateX(-100%);
    }

    .title[b-x3phoxeo6f]::after {
        margin-left: 10px;
    }
/* _content/XiMenJiaoCheng/Views/Shared/_Layout.cshtml.rz.scp.css */
/* Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand[b-ol6ghep64s] {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

a[b-ol6ghep64s] {
  color: #0077cc;
}

.btn-primary[b-ol6ghep64s] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active[b-ol6ghep64s], .nav-pills .show > .nav-link[b-ol6ghep64s] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.border-top[b-ol6ghep64s] {
  border-top: 1px solid #e5e5e5;
}
.border-bottom[b-ol6ghep64s] {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow[b-ol6ghep64s] {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy[b-ol6ghep64s] {
  font-size: 1rem;
  line-height: inherit;
}

.footer[b-ol6ghep64s] {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;
}
