.s-h-document{
    padding-top: 24px;
    padding-bottom: 60px;

}

.s-container {
    width: 1448px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}
.category-title {
    width: 100%;
    margin: 32px 0 16px 0;
    padding: 0 12px;
    box-sizing: border-box;
}

.category-title h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1e21;
    margin: 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8e8e8;
    display: inline-block;
}

.content-list{
    /*display: none;*/
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.s-container .content-list.active{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.section-header {
    width: 100%;
    /*margin-bottom: 28px;*/
}

.section-header-title {
    text-align: center;
    margin-bottom: 24px;
}

.section-header-title h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1e21;
    margin: 0 0 8px 0;
}

.section-header-subtitle {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.col-20 {
    width: 20%;
    box-sizing: border-box;
    padding: 12px;

}

.h-document_item {
    background-color: #fff;
    padding: 24px;
    box-sizing: border-box;
    border-radius: 12px;
    box-shadow: 0px 20px 25px -8px rgba(125, 125, 125, 0.15);
    height: 250px;
}

.h-document_item:hover {
    box-shadow: 0px 15px 20px -8px rgba(125, 125, 125, 0.5);
    transform: translateY(-2px);
}

.h-document_item .doc-cover {
    height: 30%;
}

.h-document_item .doc-cover img{
    height: 100%;
    border-radius: 6px;
    object-fit: cover;
}

.h-document_item .doc-info{
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    height: 70%;
    padding-top: 12px;
}

.h-document_item .doc-info h3{
    color: #1a1e21;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 8px;
}
.h-document_item .doc-info .description{
    color: #666;
    font-size: 0.875rem;
    line-height: 1.6;
    width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.h-document_item .doc-info .document_type{
    color: #999;
    font-size: 0.8125rem;
    font-weight: 500;
    width: 100%;
    padding-top: 8px;
}

.tech-card {
    background-color: #fff;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 12px;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
    height: 180px;
    position: relative;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tech-card-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2268F7, #4A90E2, #2268F7);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 12px 32px rgba(34, 104, 247, 0.15);
    border-color: #2268F7;
}

.tech-card:hover .tech-card-gradient {
    opacity: 1;
    animation: gradientSlide 1.5s ease infinite;
}

@keyframes gradientSlide {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

.tech-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.tech-icon {
    min-width: 48px;
    height: 48px;
    padding: 0 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    box-sizing: border-box;
}

.tech-icon span {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80px;
}

.tech-doc-count {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.doc-count-num {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2268F7;
    line-height: 1.2;
}

.doc-count-label {
    font-size: 0.75rem;
    color: #999;
}

.tech-card-body {
    position: relative;
}

.tech-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1e21;
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tech-desc {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*帮助*/

.section-help {
    padding-bottom: 80px;
    margin-top: 24px;

}


.section-help-top {
    height: 240px;
    background: linear-gradient(0deg, rgb(244, 246, 255), rgb(249, 242, 255));
    box-sizing: border-box;
}


.search-box {
    width: 1448px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    height: 240px;
    box-sizing: border-box;
}

.section-article_home {
    background: #fff;
    padding-top: 60px;
    padding-bottom: 120px;
    background-image: url("/images/home_article_back.jpg");
    background-size: 100% 100%;
}

/* 博客页面样式优化 */
.section-article {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.article-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    z-index: 10;
}

/* 分类导航样式 */
.article-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    z-index: 10;
}

.article-category-item {
    margin: 0;
}

.article-categories a {
    display: inline-block;
    padding: 8px 16px;
    color: #666;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;

}

.article-categories a:hover {
    background-color: #2268F7;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(34, 104, 247, 0.3);
}

/* 分类选中状态 */
.article-category-item.active a {
    background-color: #2268F7;
    color: #fff;
    font-weight: 600;
}

.article-category-item.active a:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(34, 104, 247, 0.4);
}

/* 文章列表布局 */
.container_row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* 文章卡片样式 */
.article_box {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.article_box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(34, 104, 247, 0.15);
    border-color: #2268F7;
}

.article_box a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.article-box {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article-box_cover {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 宽高比 */
    overflow: hidden;
    background-color: #f0f0f0;
}

.article-box_cover img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article_box:hover .article-box_cover img {
    transform: scale(1.05);
}

.article-box_info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-box_info_title {
    flex: 1;
    margin-bottom: 16px;
}

.article-box_info_title div {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1e21;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.article_box:hover .article-box_info_title div {
    color: #2268F7;
}

.article-box_info_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: #999;
}

.article-box_info_type {
    background-color: #f0f4ff;
    color: #2268F7;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.8125rem;
}

/* 分页样式优化 */
.page-box {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.pagination {
    margin: 0;
    display: flex;
    gap: 8px;
    background: #fff;
    padding: 12px;
    border-radius: 50px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    list-style: none;
}

.page-item {
    margin: 0;
}

.page-link {
    color: #666;
    border: none;
    background: transparent;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
}

.page-link:hover {
    background-color: #f0f4ff;
    color: #2268F7;
    transform: translateY(-2px);
}

.page-item.active .page-link {
    background-color: #2268F7;
    color: #fff;
    font-weight: 600;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .article-container {
        padding: 0 15px;
    }
    
    .container_row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .article-box_info {
        padding: 16px;
    }
    
    .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .section-article {
        padding: 20px 0;
    }
}

@media (max-width: 1200px) {
    .container_row {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
}

.search-box_title {
    width: 100%;
    text-align: center;
}

.search-box_title h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 16px;
    margin-top: 12px;
    letter-spacing: 0.02em;
}

.search-box_form {
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.search-box_form form {
    position: relative;
}

.search-box_form_time {
    width: 100%;
    text-align: center;
}

.search-box_form_description {
    width: 100%;
    margin-top: 24px;
}

.search-box_form_description p {
    color: #666;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.search-box_form form .inp {
    width: 380px;
    height: 50px;
    border-radius: 25px;
    padding-left: 24px;
    border: 0;
    font-size: 0.9375rem;
    color: #333;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.search-box_form form .inp:focus {
    outline: none;
    box-shadow: 0 4px 25px rgba(34, 104, 247, 0.2);
}

.search-box_form form .inp::placeholder {
    color: #999;
    font-weight: 300;
}

.search-box_form form button {
    height: 50px;
    position: absolute;
    right: 0;
    border-radius: 0 25px 25px 0;
    padding: 0 16px;
    border: 0;
    background: linear-gradient(135deg, #2268F7, #4A90E2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box_form form button:hover {
    background: linear-gradient(135deg, #1a5ae0, #3d7fd1);
}

.search-icon {
    height: 24px;
    line-height: 50px;
}

.help_container {

    width: 1448px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;

}

.help-col-box {
    width: 33.33%;
    box-sizing: border-box;
    padding: 12px;
    z-index: 10;
}

.help-box {
    background-color: #fff;
    width: 100%;
    height: 310px;
    border-radius: 12px;
    box-shadow: 0px 20px 25px -8px rgba(125, 125, 125, 0.15);
}

.help-box:hover {
    box-shadow: 0px 15px 20px -8px rgba(125, 125, 125, 0.5);
    transform: translateY(-2px);
}

.help-box_top {
    height: 60px;
    line-height: 60px;
    padding-left: 24px;
    padding-right: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    box-sizing: border-box;
}

.help-box_title {
    color: #1a1e21;
    font-size: 1.125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    width: 70%;
}


.help-box_title img {
    height: 32px;
    margin-right: 12px;
}

.help-box_title_text {
    color: #1a1e21;
    width: 80%;
    font-size: 1.125rem;
    font-weight: 600;
    display: flex;
}

.help-box_more a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #2268F7;
    transition: color 0.2s ease;
}

.help-box_more a:hover {
    color: #1a5ae0;
}

.help-box_content {
    padding: 20px 24px;
    padding-top: 12px;
}

.help-box_content ul {
    margin: 0;
    list-style: none;
}

.help-box_content ul li {
    height: 36px;
    line-height: 36px;
}

.help-box_content ul li a {
    color: #555;
    font-size: 0.9375rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    transition: color 0.2s ease;
}

.help-box_content ul li a:hover {
    color: #2268F7;
}

.section-help-detail {

}

.section-container {
    width: 1448px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 12px;

}

.search-list {
    background-color: #fff;
    box-sizing: border-box;
    padding: 24px;
}

.search-results-list {
    width: 100%;

}

.search-result-title {
    /*color: #1154c0;*/
    font-size: 18px;
    display: block;
    cursor: pointer;
    font-weight: 600;
    line-height: 24px;
    color: #1366ec;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-item {
    margin-bottom: 24px;
}

.search-result-snippet {
    color: #666;
    padding-bottom: 8px;
}

.search-result-meta {
    color: #999;
    font-size: 14px;
}


.no-results {
    text-align: center;
    margin-top: 80px;
}

.help_container-fluid {
    width: 1448px;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
}

.doc-nav_row {
    width: 20%;
    overflow-y: auto;
    position: sticky;
    top: 68px;
    height: calc(100vh - 84px);
    background-color: #fff;
    border-right: 1px solid #eaeaea;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
    transition: box-shadow 0.3s ease;
}

.doc-nav_row:hover {
    box-shadow: 2px 0 12px rgba(0, 0, 0, 0.1);
}


/* 自定义滚动条样式 */
.doc-nav_row::-webkit-scrollbar {
    width: 6px;
}

.doc-nav_row::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.doc-nav_row::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.doc-nav_row::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.doc-nav {
    width: 100%;
    padding: 16px 12px;
    box-sizing: border-box;
    overflow-y: auto;
    padding-bottom: 80px;
    background-color: #fff;
}

.doc_nav-item {
    margin-bottom: 2px;
    margin-top: 2px;
    color: #333;
    border-radius: 6px;
    transition: all 0.2s ease;
    position: relative;
}

.doc_nav-item:hover {
    background-color: #f8f9fa;
}

.doc_nav-item a {
    display: block;
    padding: 8px 12px;
    padding-left: 16px;
    color: #333;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.doc_nav-item a:hover {
    color: #2268F7;
    background-color: #f0f5ff;
}

.doc_nav-item.has-children > a {
    padding-left: 28px;
    position: relative;
}

.doc_nav-item.has-children > a::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid #999;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    transition: transform 0.2s ease;
}

.doc_nav-item.has-children.expanded > a::before {
    transform: translateY(-50%) rotate(90deg);
    border-left-color: #2268F7;
}

.doc_nav-item.has-children > a:hover::before {
    border-left-color: #2268F7;
}

.doc-nav .act-link {
    color: #2268F7;
    background-color: #e6f0ff;
    font-weight: 600;
}

.doc-nav .nav-item-child {
    padding-left: 20px;
    margin-bottom: 1px;
    margin-top: 1px;
    color: #666;
    border-radius: 4px;
    overflow: hidden;
    max-height: 50px;
}

.doc-nav .nav-item-child.collapsed {
    max-height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
}

.doc-nav .nav-item-child:hover {
    background-color: #f8f9fa;
}

.doc-nav .nav-item-child a {
    display: block;
    padding: 6px 10px;
    color: #666;
    font-size: 0.8125rem;
    border-radius: 4px;
}

.doc-nav .nav-item-child a:hover {
    color: #2268F7;
    background-color: #f0f5ff;
}

.doc-nav .nav-item-child .act-link {
    color: #2268F7;
    background-color: #e6f0ff;
    font-weight: 500;
}

.doc-content {
    width: 60%;
    box-sizing: border-box;
    padding: 12px;
}

.doc-toc {
    width: 20%;

}


.doc-nav-next-prev {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ddd;
    padding-top: 24px;
}


.doc-content .doc-content-header {
    background-color: #fff;
    box-sizing: border-box;
    padding: 0;
    margin-bottom: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.doc-content-header-title {
    padding: 24px 32px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.doc-content-header-title h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
    color: #1a1e21;
    line-height: 1.3;
}

.breadcrumb {
    display: flex;
    align-items: center;
    padding: 16px 32px;
    background-color: #f8f9fa;
    margin: 0;
    flex-wrap: nowrap;
}

.breadcrumb-item {
    padding-right: 28px;
    list-style: none;
    position: relative;
    font-size: 14px;
    white-space: nowrap;
}

.breadcrumb-item:not(:last-child):after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-top: 2px solid #999;
    border-right: 2px solid #999;
    transform: translateY(-50%) rotate(45deg);
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

.breadcrumb-item a:hover {
    color: #2268F7;
    background-color: rgba(34, 104, 247, 0.1);
}

.breadcrumb-item.active {
    color: #2268F7;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 4px;
    background-color: rgba(34, 104, 247, 0.1);
}

/* 添加首页图标 */
.breadcrumb-item:first-child a:before {
    content: "⌂";
    margin-right: 6px;
    font-size: 16px;
}

.md-html {
    box-shadow: 0px 20px 25px -8px rgba(125, 125, 125, 0.15);
    margin-bottom: 48px;
}

/* 博客详情页重新设计样式 */
.section-article-detail {
    padding: 40px 0;
    background-color: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.article-detail-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
}

/* 主内容区 */
.article-main-content {
    width: 75%;
    z-index: 10;
    box-sizing: border-box;
    padding-right: 12px;
}

/* 文章头部 */
.article-header {
    background: #fff;
    padding: 36px;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding-bottom: 24px;
    border-bottom: 1px solid #f1f1f1;
}

.article-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a1e21;
    line-height: 1.3;
    margin-bottom: 20px;
    word-break: break-word;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.9375rem;
    color: #666;
}

.article-meta .meta-item {
    padding: 6px 14px;
    background-color: #f5f7fa;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.article-meta .meta-item:hover {
    background-color: #e4ebf5;
}

/* 文章描述样式 */
.article-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-top: 16px;
    padding: 16px;
    background-color: #f8faff;
    border-left: 3px solid #2268F7;
    border-radius: 0 4px 4px 0;
    max-height: 6em; /* 限制最大高度，大约3行 */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* 最多显示3行 */
    -webkit-box-orient: vertical;
    transition: all 0.3s ease;

}

.article-description:hover {
    background-color: #f0f4ff;
    box-shadow: 0 2px 8px rgba(34, 104, 247, 0.1);
}

/* 内容区域 */
.article-main-content .md-html {
    background: #fff;
    padding: 48px;
    border-radius:0 0 12px 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    line-height: 1.75;
    font-size: 1rem;
    color: #333;
}

/* 代码块样式 */
.article-main-content .md-html pre {
    background-color: #282c34;
    border-radius: 8px;
    padding: 24px;
    margin: 28px 0;
    overflow-x: auto;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    position: relative;
}

.article-main-content .md-html pre::after {
    content: "\f121"; /* Code icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 16px;
    right: 20px;
    color: #666;
    font-size: 0.875rem;
}

.article-main-content .md-html pre code {
    color: #abb2bf;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* 图片样式 */
.article-main-content .md-html img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-main-content .md-html img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* 段落和标题样式 */
.article-main-content .md-html p {
    margin-bottom: 24px;
    text-align: justify;
}

.article-main-content .md-html h1, 
.article-main-content .md-html h2, 
.article-main-content .md-html h3, 
.article-main-content .md-html h4, 
.article-main-content .md-html h5, 
.article-main-content .md-html h6 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1e21;
    font-weight: 600;
    line-height: 1.4;
}

.article-main-content .md-html h1 { font-size: 1.875rem; }
.article-main-content .md-html h2 { font-size: 1.5rem; }
.article-main-content .md-html h3 { font-size: 1.25rem; }
.article-main-content .md-html h4 { font-size: 1.125rem; }
.article-main-content .md-html h5, 
.article-main-content .md-html h6 { font-size: 1rem; }

/* 列表样式 */
.article-main-content .md-html ul, 
.article-main-content .md-html ol {
    margin-bottom: 24px;
    padding-left: 32px;
}

.article-main-content .md-html li {
    margin-bottom: 12px;
    position: relative;
}

.article-main-content .md-html ul li::before {
    content: "•";
    color: #2268F7;
    font-weight: bold;
    position: absolute;
    left: -20px;
    top: 0;
}

/* 引用样式 */
.article-main-content .md-html blockquote {
    border-left: 4px solid #2268F7;
    padding: 20px 28px;
    margin: 24px 0;
    background-color: #f0f4ff;
    border-radius: 0 8px 8px 0;
    color: #555;
    font-style: italic;
    line-height: 1.6;
}

/* 右侧边栏 */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-section {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1e21;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

/* TOC目录样式 */
.toc-section .md-toc {

    padding: 0;
    box-shadow: none;
    position: static;
    box-sizing: border-box;
}

.toc-section .toc-list {
    list-style: none;
    padding-left: 0;
    font-size: 14px;
}

.toc-section .toc-list li {
    transition: all 0.2s ease;
}

.toc-section .toc-list li a {
    color: #666;
    text-decoration: none;
    display: block;
    padding: 5px 0px;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.toc-section .toc-list li a:hover {
    color: #2268F7;
    background-color: #f0f4ff;
}

.toc-section .toc-list li.active a {
    color: #2268F7;
    font-weight: bold;
    background-color: #f0f4ff;
    border-left: 3px solid #2268F7;
}

/* 相关推荐样式 */
.related-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 24px;
}

.related-item {
    transition: all 0.3s ease;
}

.related-item:hover {
    transform: translateX(4px);
}

.related-link {
    color: #333;
    text-decoration: none;
    font-size:14px;
    line-height: 1.5;
    display: block;
    transition: color 0.3s ease;
}

.related-link:hover {
    color: #2268F7;
}

/* 精选内容样式 */
.featured-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.featured-item {
    transition: all 0.3s ease;
}

.featured-item:hover {
    transform: translateX(4px);
}

.featured-link {
    color: #333;
    text-decoration: none;
    font-size: 0.9375rem;
    line-height: 1.5;
    display: block;
    transition: color 0.3s ease;
}

.featured-link:hover {
    color: #2268F7;
}

/* 空状态样式 */
.article-main-content .md-html .empty {
    text-align: center;
    padding: 80px 20px;
    color: #999;
}

.article-main-content .md-html .empty img {
    max-width: 140px;
    margin-bottom: 24px;
    opacity: 0.5;
}

.article-main-content .md-html .empty-text {
    font-size: 1.125rem;
    color: #666;
}

/* 滚动条样式 */
.article-sidebar::-webkit-scrollbar,
.md-toc::-webkit-scrollbar {
    width: 6px;
}

.article-sidebar::-webkit-scrollbar-track,
.md-toc::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.article-sidebar::-webkit-scrollbar-thumb,
.md-toc::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.article-sidebar::-webkit-scrollbar-thumb:hover,
.md-toc::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* 响应式设计 - 使用传统宽度百分比方式 */
@media (max-width: 1200px) {
    .article-main-content {
        width: 70%;
    }
    
    .article-sidebar {
        width: 28%;
    }
    
    .article-title {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .article-detail-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .article-main-content,
    .article-sidebar {
        width: 100%; /* 移动端全宽 */
    }
    
    .article-sidebar {
        order: 2;
    }
    
    .article-main-content {
        order: 1;
    }
    
    .toc-section .md-toc {
        max-height: 300px;
    }
}

@media (max-width: 768px) {
    .section-article-detail {
        padding: 20px 0;
    }
    
    .article-detail-container {
        padding: 0 15px;
    }
    
    .article-header {
        padding: 24px;
    }
    
    .article-title {
        font-size: 1.5rem;
    }
    
    .article-meta {
        gap: 12px;
        font-size: 0.875rem;
    }
    
    .article-meta .meta-item {
        padding: 4px 12px;
    }
    
    .article-main-content .md-html {
        padding: 24px;
    }
    
    .sidebar-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 1.25rem;
    }
    
    .article-main-content .md-html {
        padding: 16px;
    }
    
    .sidebar-section {
        padding: 16px;
    }
}

/* TOC目录样式 - 使用现有的.md-toc元素 */
.md-toc {
    background-color: #fff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 0;
    position: sticky;
    top: 100px;
    z-index: 50;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    box-shadow: 0px 20px 25px -8px rgba(125, 125, 125, 0.15);
}

/* 自定义滚动条样式 */
.md-toc::-webkit-scrollbar {
    width: 6px; /* 减小滚动条宽度为6px */
}

.md-toc::-webkit-scrollbar-track {
    background: #f1f1f1; /* 滚动条轨道背景色 */
    border-radius: 3px; /* 轨道圆角 */
}

.md-toc::-webkit-scrollbar-thumb {
    background: #888; /* 滚动条滑块颜色 */
    border-radius: 3px; /* 滑块圆角 */
}

.md-toc::-webkit-scrollbar-thumb:hover {
    background: #555; /* 滑块悬停颜色 */
}

.md-toc h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 18px;
    color: #1a1e21;
}


.toc-list {
    list-style: none;
    padding-left: 0;
    font-size: 14px;
}

.toc-list li {
    margin-bottom: 0px;
}

.toc-list li a {
    color: #666;
    text-decoration: none;
    display: block;
    padding: 4px 0;
}

.toc-list li a:hover {
    color: #2268F7;
}

/* 层级缩进 */
.toc-h2 {
    padding-left: 0;
}

.toc-h3 {
    padding-left: 16px;
}

.toc-h4 {
    padding-left: 32px;
}

.toc-h5 {
    padding-left: 48px;
}

.toc-h6 {
    padding-left: 64px;
}

.toc-list li.active a {
    color: #2268F7;
    font-weight: bold;
}


/*单页开始*/
.section-page-top {
    height: 180px;
    background-image: url("/images/top-bg.jpg");
    background-size: 100% 100%;
    position: relative;
    z-index: 10;
}

.section-page-top .page-container {
    width: 1448px;
    margin: 0 auto;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-page-top .banner-title {
    text-align: center;

}

.section-page-top .banner-title h1,.section-page-top .banner-title h2 {
    color: #333;
}

.section-page {
    width: 1400px;
    margin: 0 auto;
    margin-bottom: 48px;
    margin-top: 24px;
}

.editor-html {
    width: 100%;
    background-color: #fff;
    padding: 24px;
    padding-bottom: 48px;
    box-sizing: border-box;
    border-radius: 15px;
    box-shadow: 0px 15px 20px -8px rgba(125, 125, 125, 0.1);
}

/*关于我们*/

@media (max-width: 1447px) {
    .section-page-top .page-container {
        width: 100%;
        padding: 0 24px;
    }

    .section-page {
        width: 100%;
        padding: 0 24px;
        box-sizing: border-box;
    }

    .s-container {
        width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    .search-box {
        width: 100%;
        padding: 0 24px;
        box-sizing: border-box;
    }

    .help_container {
        width: 100%;
        padding: 0 24px;
        box-sizing: border-box;
    }

    .help_container-fluid {
        width: 100%;
        padding: 0 24px;
        box-sizing: border-box;
    }

    .section-container {
        width: 100%;
        padding: 0 24px;
        box-sizing: border-box;
    }
}

@media (max-width: 1200px) {
    .col-20 {
        width: 25%;
    }

    .help-col-box {
        width: 50%;
    }

    .doc-nav_row {
        width: 25%;
    }

    .doc-content {
        width: 50%;
    }

    .doc-toc {
        width: 25%;
    }
}

@media (max-width: 992px) {
    .col-20 {
        width: 33.33%;
    }

    .help-col-box {
        width: 50%;
    }

    .doc-nav_row {
        width: 30%;
    }

    .doc-content {
        width: 70%;
    }

    .doc-toc {
        display: none;
    }
}

@media (max-width: 768px) {
    .col-20 {
        width: 50%;
    }

    .help-col-box {
        width: 100%;
    }

    .doc-nav_row {
        display: none;
    }

    .doc-content {
        width: 100%;
    }

    .search-box_title h3 {
        font-size: 24px;
    }

    .search-box_form form .inp {
        width: 280px;
        height: 42px;
    }

    .search-box_form form button {
        height: 42px;
    }

    .section-header-title h2 {
        font-size: 1.5rem;
    }

    .section-header-subtitle {
        font-size: 0.9375rem;
    }

    .category-title {
        margin: 24px 0 12px 0;
    }

    .category-title h3 {
        font-size: 1.375rem;
    }

    .filter-tags {
        gap: 10px;
    }

    .filter-tag {
        padding: 6px 16px;
        font-size: 0.875rem;
    }

    .tech-card {
        height: 160px;
        padding: 16px;
    }

    .tech-icon {
        min-width: 40px;
        height: 40px;
        padding: 0 8px;
        font-size: 0.75rem;
    }

    .doc-count-num {
        font-size: 1.125rem;
    }

    .tech-name {
        font-size: 1rem;
    }

    .tech-desc {
        font-size: 0.8125rem;
        -webkit-line-clamp: 2;
    }

    .help-box {
        height: auto;
        min-height: 280px;
    }

    .help-box_top {
        height: 50px;
        line-height: 50px;
        padding: 0 16px;
    }

    .help-box_title {
        font-size: 16px;
    }

    .help-box_title img {
        height: 24px;
        margin-right: 8px;
    }

    .help-box_more a {
        font-size: 14px;
    }

    .help-box_content {
        padding: 16px;
    }

    .section-help-top {
        height: 200px;
    }

    .search-box {
        height: 200px;
    }

    .doc-content-header-title {
        padding: 16px 20px;
    }

    .doc-content-header-title h3 {
        font-size: 22px;
    }

    .breadcrumb {
        padding: 12px 20px;
        flex-wrap: wrap;
    }

    .breadcrumb-item {
        font-size: 12px;
        padding-right: 20px;
    }

    .breadcrumb-item:not(:last-child):after {
        right: 6px;
    }

    .editor-html {
        padding: 16px;
        border-radius: 8px;
    }

    .section-page-top {
        height: 140px;
    }

    .section-page-top .page-container {
        height: 140px;
    }

    .section-page-top .banner-title h1,.section-page-top .banner-title h2  {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .col-20 {
        width: 100%;
    }

    .search-box_title h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .search-box_form form .inp {
        width: 240px;
        height: 38px;
        font-size: 14px;
    }

    .search-box_form form button {
        height: 38px;
    }

    .search-box_form_description {
        margin-top: 16px;
        padding: 0 16px;
    }

    .search-box_form_description p {
        font-size: 12px;
    }

    .section-help-top {
        height: 180px;
    }

    .search-box {
        height: 180px;
    }

    .section-header {
        margin-bottom: 24px;
    }

    .section-header-title h2 {
        font-size: 1.25rem;
    }

    .section-header-subtitle {
        font-size: 0.875rem;
    }

    .category-title {
        margin: 20px 0 10px 0;
    }

    .category-title h3 {
        font-size: 1.25rem;
        padding-bottom: 10px;
        border-bottom-width: 1px;
    }

    .filter-tags {
        gap: 8px;
    }

    .filter-tag {
        padding: 5px 12px;
        font-size: 0.8125rem;
    }

    .tech-card {
        height: 150px;
        padding: 14px;
    }

    .tech-icon {
        min-width: 36px;
        height: 36px;
        padding: 0 6px;
        font-size: 0.6875rem;
        border-radius: 8px;
    }

    .doc-count-num {
        font-size: 1rem;
    }

    .doc-count-label {
        font-size: 0.6875rem;
    }

    .tech-name {
        font-size: 0.9375rem;
    }

    .tech-desc {
        font-size: 0.75rem;
        -webkit-line-clamp: 2;
    }

    .help-box {
        min-height: 260px;
    }

    .help-box_top {
        height: 44px;
        line-height: 44px;
        padding: 0 12px;
    }

    .help-box_title {
        font-size: 14px;
    }

    .help-box_title img {
        height: 20px;
        margin-right: 6px;
    }

    .help-box_more a {
        font-size: 12px;
    }

    .help-box_content {
        padding: 12px;
    }

    .help-box_content ul li {
        height: 28px;
        line-height: 28px;
        font-size: 13px;
    }

    .s-h-document {
        padding-top: 16px;
        padding-bottom: 40px;
    }

    .section-help {
        padding-bottom: 40px;
        margin-top: 16px;
    }

    .doc-content-header-title {
        padding: 12px 16px;
    }

    .doc-content-header-title h3 {
        font-size: 18px;
    }

    .breadcrumb {
        padding: 10px 16px;
    }

    .breadcrumb-item {
        font-size: 11px;
        padding-right: 16px;
    }

    .editor-html {
        padding: 12px;
        border-radius: 6px;
    }

    .section-page-top {
        height: 120px;
    }

    .section-page-top .page-container {
        height: 120px;
        padding: 0 12px;
    }

    .section-page-top .banner-title h1 ,.section-page-top .banner-title h2 {
        font-size: 18px;
    }

    .section-page {
        padding: 0 12px;
        margin-bottom: 24px;
        margin-top: 16px;
    }

    .search-result-title {
        font-size: 15px;
    }

    .search-result-snippet {
        font-size: 13px;
    }

    .search-result-meta {
        font-size: 12px;
    }

    .search-list {
        padding: 16px;
    }

    .no-results {
        margin-top: 40px;
    }

    .no-results h3 {
        font-size: 16px;
    }
}

.about-section {
    padding: 60px 24px;
}

.about-section-gray {
    background-color: #f8f9fc;
    position: relative;
    z-index: 10;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-intro {
    text-align: center;
}

.about-intro-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #2268F7 0%, #4A90E2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.about-intro h2 {
    font-size: 2rem;
    color: #1a1e21;
    margin-bottom: 8px;
}

.about-tagline {
    font-size: 1rem;
    color: #2268F7;
    margin-bottom: 24px;
    font-weight: 500;
}

.about-desc {
    font-size: 1rem;
    color: #555;
    line-height: 1.9;
    text-align: left;
}

.section-title {
    font-size: 18px;
    color: #1a1e21;
    position: relative;
}


.section-desc {
    font-size: 1rem;
    color: #555;
    line-height: 1.9;
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #f0f5ff 0%, #e6f0ff 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2268F7;
}

.feature-card h4 {
    font-size: 1.125rem;
    color: #1a1e21;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.values-content {
    text-align: center;
}

.values-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 16px;
}

.values-highlight {
    font-size: 1.0625rem;
    color: #2268F7;
    font-weight: 500;
    padding: 20px 24px;
    background: linear-gradient(135deg, #f0f5ff 0%, #e6f0ff 100%);
    border-radius: 12px;
    margin-top: 24px;
}

.banner-subtitle {
    font-size: 1.125rem;
    color: #666;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 16px;
    }

    .about-intro h2 {
        font-size: 1.5rem;
    }

    .about-tagline {
        font-size: 0.9375rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .about-intro-icon {
        width: 64px;
        height: 64px;
    }

    .about-intro-icon svg {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 32px 12px;
    }

    .about-intro h2 {
        font-size: 1.25rem;
    }

    .about-desc,
    .section-desc,
    .values-content p {
        font-size: 0.9375rem;
    }

    .feature-card h4 {
        font-size: 1rem;
    }

    .feature-card p {
        font-size: 0.875rem;
    }

    .values-highlight {
        font-size: 0.9375rem;
        padding: 16px;
    }

    .banner-subtitle {
        font-size: 0.9375rem;
    }
}