/*body {background: #f9f9f9;}*/
.container {display: flex; min-height: calc(100vh - 240px); flex-direction: column; align-items: stretch;}
.container::after{content: ""; display: block; clear: both;}

.max-w{max-width: 1300px; width: 100%; margin: 0 auto;}

.content{flex: 1;max-width: var(--page-max-width);align-self: center;width: 100%; display: flex; flex-direction: column; margin: 0 0 1.5rem;}

/* 页头 */
.main-header{max-width: var(--page-max-width); display:flex;align-items:center;justify-content:space-between;padding:1.5rem 0;background:#FFFFFF; gap: 1rem 0; box-sizing: border-box; margin-bottom: 50px;}
.main-header .name{font-size: clamp(14px, 4cqw, 1.5rem);font-weight:bold;position:relative;height:100%;}
.main-header .crumbs{display:flex;color:#666666;font-size:1rem; align-items: center;}
.main-header .crumbs .crumb-item{}
.main-header .crumbs .crumb-item:not(:last-child)::after{content:">";margin:0 10px}
.main-header .searchBar{width: 100%; display: flex; align-items: center; max-width: 600px;}
.main-header .searchBar .search_input{flex: 1; height: 32px; border-radius: 0; border: 1px solid #efefef; padding: 1px 10px;}
.main-header .searchBar .search_button{width: 20%; min-width: 5rem; border-radius: 0; height: 36px; border: none; background-color: #efefef; cursor: pointer;}

.article-list{width: 100%; gap: calc(2rem + 1px); display: flex; flex-direction: column;}
.article-list .article-item{display: flex; gap: 3rem; position: relative; padding: 1.5rem 1rem; background: #FFFFFF;}
.article-list .article-item:hover{background: #f7f7f7;}
.article-list .article-item:not(:last-child)::after{content: ""; position: absolute; height: 1px; width: 100%; background-color: #e5e5e5; left: 0; top: calc(100% + 1rem + 2px)}
.article-list .article-item .date{border-right: 1px solid #e5e5e5; display: flex;flex-direction: column; align-items: center; justify-content: center; gap: 1.2rem; width: 11rem; font-family: gotham, serif;font-weight: bold;}
.article-list .article-item .date .dayText{font-size: 2.3rem; color: #456; }
.article-list .article-item .date .dateText{font-size: 1.1rem; color: #999;}
.article-list .article-item .date .timeText{}
.article-list .article-item .cover{transition: width 0.5s; width: 137px; background: var(--bg) center center no-repeat; background-size: cover; border-radius: 3px; min-width: 1px;height: 100%;aspect-ratio: 4/3;}
.article-list .article-item .info{flex: 1; display: flex; flex-direction: column; align-items: stretch; overflow: hidden;justify-content: space-around; gap: 2rem; color: #333;}
.article-list .article-item .info .title{font-size: 18px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap;width: 100%; font-weight: bold;}
.article-list .article-item .info .desc{color: #666666; line-height: 1.2rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;}
.article-list .article-item .info .attrs{color: #666666; display: flex; gap: 2rem;}

.video-list{width: 100%; display: grid; overflow: hidden; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 15px; margin-top: 20px;}
.video-list .item{display: flex; flex-direction: column; position: relative;}
.video-list .item::after{border-radius: 3px; color: rgba(255,255,255,0.6); content: "◀"; width: clamp(20px, 20%, 80px); aspect-ratio: 1.5 / 1; background: rgba(0,0,0,0.4); position: absolute; left: 50%; top: 50%; transition: 0.3s; border: 3px solid currentColor; display: flex; align-items: center; justify-content: center; transform: translate(-50%, -50%) rotateY(180deg); cursor: pointer;}
.video-list .item:hover::after{color: #FFFFFF; background: rgba(0,0,0,0.2);}
.video-list .item .cover{width: 100%; aspect-ratio: 16 / 9}
.video-list .item .cover img{width: 100%; height: 100%; object-fit: cover;}
.video-list .item .title{width: 100%; height: 3rem; line-height: 3; position: absolute; bottom: 0; left: 0; background-color: rgba(255,255,255,0.9); text-align: center;}

.pagination{display: flex; align-items: center; padding: 10px 0; gap: 1rem; margin-top: 20px; justify-content: center;}
.pagination a,.pagination span{
    padding: 10px;
    min-width: 16px;
    text-align: center;
    background: #f9f9f9;
}
.pagination a:hover{
    background: #ebebeb;
}
.pagination span.active{
    background: var(--theme-color);
    color: #FFFFFF;
}

@media (max-width: 1340px) {
}
@media (max-width: 1024px) {

}
@media (max-width: 768px) {
    .sidebar .list{
        width: 100%;
        overflow-y: hidden;
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: 10px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .sidebar .list .item{
        min-width: auto;
        min-height: 3rem;
        border-radius: 1.5rem;
        white-space: nowrap;
    }

    .sidebar .list .item::after{
        right: -5px;
    }

    .article-list .article-item{gap: 1rem; padding: 10px;}
    .article-list .article-item .date{display: none;}
    .sidebar .name{flex-direction: column; gap: 1.5rem;}
    .Header .top .tel{
        display: none;
    }
    .container{
        gap: 0;
    }
    .article-list .article-item{
        border: none;
    }
    .article-list .article-item .cover{
        /* width: 90px; */
    }
    .max-w{
        /*width: calc(100% - 20px);*/
        /*padding-left: 10px;*/
        /*padding-right: 10px;*/
    }
    .main-header{flex-direction: column; margin-bottom: 20px; align-items: flex-start;}
    .main-header .name{justify-self: center; width: 100%; text-align: center}
    /*.main-header .crumbs{display: none}*/
}



/* 单页面 */
.page-title{
    font-size: 1.8rem;
    line-height: 2.2rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #ebebeb;
    padding: 1.8rem 0;
}
.page-content{
    min-height: 50vh;
    background: #ffffff;
    font-size: 14px;
    line-height: 2.4em;
    display: flex;
    gap: 1em;
    flex-direction: column;
    color: #333333;
}
.page-content img{
    max-width: 1200px;
    width: 100%;
    height: auto;
    display: block;
    margin: 1rem auto;
    text-indent: -2em;
}
.page-content p{
    text-indent: 2em;
}