/* artlist_list.css - 列表样式模板 */

.article-list-container-1 {
    box-sizing: border-box;
    width: 100vw;
    height: calc(100vh - 150px);
    display: flex;
    justify-content: center;
    position: fixed;
}

.content-container {
    width: 80%;
    height: 90%;
    padding: 4vh 3vw;
    background-image: url("../img/list1-bg.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
    overflow-y: auto;
}

.list-panel {
    width: 100%;
}

/* 搜索框容器样式 */
.search-container {
    width: 100%;
    margin-bottom: 20px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    flex: 1;
    height: 40px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: PingFangSC, PingFang SC;
    color: #373F4A;
    outline: none;
    transition: border-color 0.3s;
}

.search-input:focus {
    border-color: #013568;
}

.search-btn {
    height: 40px;
    padding: 0 24px;
    background: #013568;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-family: PingFangSC, PingFang SC;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-btn:hover {
    background: #014a8a;
}

.search-btn:active {
    background: #012a4d;
}

/* 列表容器样式 */
.lrz {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 33px;
}

/* 列表项样式 */
.lrz .lrz-item {
    display: flex;
    align-items: center;
    width: 40%;
    margin-left: 20px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    color: #373F4A;
    margin-bottom: 24px;
}

/* 列表项圆点样式 */
.lrz-dot {
    width: 6px;
    height: 6px;
    background: #013568;
    margin-right: 12px;
    flex-shrink: 0;
}

/* 响应式设计 - 移动端 */
@media (max-width: 768px) {
    .content-container {
        padding: 15px;
    }

    .search-box {
        max-width: 100%;
    }

    .search-input {
        height: 36px;
        font-size: 14px;
    }

    .search-btn {
        height: 36px;
        padding: 0 20px;
        font-size: 14px;
    }

    .lrz {
        margin-top: 15px;
    }

    .lrz .lrz-item {
        width: 100%;
        margin-left: 10px;
        margin-right: 10px;
        font-size: 14px;
    }

    .lrz-dot {
        width: 5px;
        height: 5px;
        margin-right: 10px;
    }
}

/* 响应式设计 - 平板端 */
@media (min-width: 769px) and (max-width: 1024px) {
    .lrz .lrz-item {
        width: 45%;
    }
}

