
/* =====================================================
   教务文库首页 V2 覆盖样式
   配合 console_v2.html
   ===================================================== */

.brand-logo {
    height: 42px;
    width: auto;
    display: block;
}


/* 首页三栏布局 */

.home-main-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px minmax(600px, 1fr) 220px;
    gap: 18px;
    align-items: stretch;
}


/* 搜索区域 */

.home-redesign .home-search-section {
    padding: 28px 20px 22px;
    background: linear-gradient(
        180deg,
        #f6f9ff 0%,
        #edf3ff 100%
    );
}

.home-redesign .search-title {
    font-size: 26px;
    margin-bottom: 8px;
}

.home-redesign .search-subtitle {
    margin-bottom: 18px;
    color: #7b879d;
}


/* 搜索框 */

.home-redesign .search-box {
    max-width: 760px;
    height: 56px;
    margin: auto;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #dbe4ff;
}


/* 最新资料 */

.latest-articles-panel {
    height: 386px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #edf0f6;
    overflow: hidden;
}

.latest-articles-panel .card-header {
    height: 56px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    border-bottom: 1px solid #edf0f6;
    background: #fff;
}

.latest-articles-panel .panel-title {
    color: #172033;
    font-size: 18px;
    font-weight: 800;
}


.articles-list {
    padding: 12px 18px;
}


.article-item {
    min-height: 42px;
    padding: 8px 0;
    border-bottom: 1px dashed #edf0f6;
}


/* Banner */

.banner-wrapper {
    min-width: 0;
}

.home-carousel {
    height: 386px;
    min-height: 386px;
    border-radius: 10px;
    overflow: hidden;
}


.home-carousel-track {
    height: 100%;
}


.carousel-image {
    width: 100%;
    height: 386px;
    object-fit: cover;
}



/* 平台统计 */

.platform-stat-panel {

    background: #fff;

    border-radius: 10px;

    border: 1px solid #edf0f6;

    padding: 22px 18px;

    text-align: center;

}


.stat-title {

    font-size: 15px;

    color: #667085;

    font-weight: 600;

}


.stat-number {

    margin-top: 10px;

    font-size: 38px;

    line-height: 1.2;

    font-weight: 900;

    color: #315efb;

}


.stat-unit {

    margin-bottom: 20px;

    color: #98a2b3;

}


.stat-row {

    padding: 14px 0;

    border-top: 1px solid #edf0f6;

    color: #344054;

    font-size: 14px;

}



/* 分类入口 */

.hot-tags-section {

    max-width: 1200px;

    margin: 24px auto;

}


.tags-container {

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 14px;

}


.tag-card {

    min-height: 86px;

    border-radius: 10px;

    padding: 16px;

    background: #fff;

    border: 1px solid #edf0f6;

}


.tag-visual {

    display: none;

}


.tag-content {

    padding: 0;

    text-align: center;

}


.tag-content h3 {

    margin: 0;

    font-size: 17px;

    color: #1d2939;

}



/* 热门分类 */

.hot-category-section {

    max-width:1200px;

    margin:24px auto;

}


.hot-category-tabs {

    background:#fff;

    border-radius:10px;

    border:1px solid #edf0f6;

}



/* 导航 */

.top-header .nav-menu {

    gap: 20px;

}


.top-header .nav-item {

    font-size:15px;

    padding:16px 8px;

}


/* 响应式 */

@media(max-width:1200px){

    .home-main-layout {

        grid-template-columns: 1fr;

    }


    .platform-stat-panel {

        display:grid;

        grid-template-columns:repeat(3,1fr);

        text-align:center;

    }


    .tags-container {

        grid-template-columns:repeat(3,1fr);

    }

}


@media(max-width:768px){

    .tags-container {

        grid-template-columns:repeat(2,1fr);

    }

}
