/* 列表页样式 */
.list-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* 面包屑导航 */
.breadcrumb {
    padding: 10px 0;
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.breadcrumb a {
    color: #2673de;
    text-decoration: none;
    margin: 0 5px;
}

.breadcrumb a:first-child {
    margin-left: 0;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* 列表页介绍 */
.list-intro {
    margin-bottom: 20px;
}

.list-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.list-title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100px;
    height: 2px;
    background-color: #2673de;
}

.list-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* 词汇列表 */
.word-list-wrapper {
/*    border: 1px solid #eee;*/
    margin-bottom: 20px;
}

.word-list-row {
    display: flex;
    flex-wrap: wrap;
/*    border-bottom: 1px solid #eee;*/
}

.word-list-row:last-child {
    border-bottom: none;
}

.word-list-cell {
    flex: 0 0 16.666%;
    border: 1px solid #eee;
    box-sizing: border-box;
}

.word-list-cell:last-child {
/*    border-right: none;*/
}

.word-list-link {
    display: block;
    padding: 12px 10px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: all 0.2s;
}

.word-list-link:hover {
    background-color: #f5f5f5;
    color: #2673de;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    margin: 25px 0;
    align-items: center;
}

.page-num, .page-prev, .page-next {
    display: inline-block;
    margin: 0 3px;
    padding: 5px 10px;
    border: 1px solid #ddd;
    color: #666;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.2s;
}

.page-num:hover, .page-prev:hover, .page-next:hover {
    background-color: #f5f5f5;
    color: #2673de;
}

.page-num.active {
    background-color: #2673de;
    color: white;
    border-color: #2673de;
}

.page-dot {
    margin: 0 3px;
    color: #666;
}

/* 工具部分 */
.tools-section {
    margin-top: 30px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 16px;
    padding: 10px 0;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 1px solid #eee;
    position: relative;
}

.section-title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100px;
    height: 2px;
    background-color: #2673de;
}

/* 响应式样式 */
@media (max-width: 768px) {
    .word-list-cell {
        flex: 0 0 33.333%;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
    
    .page-num:nth-child(n+6):nth-child(-n+10) {
        display: none;
    }
}

@media (max-width: 480px) {
    .word-list-cell {
        flex: 0 0 50%;
    }
    
    .page-num:nth-child(n+4):nth-child(-n+11) {
        display: none;
    }
} 

.pagelistul{
    text-align: center;
}
.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 17px 0;
    border-radius: 3px;
}

.pagination > li {
    display: inline;
}

.pagination > li > a,.pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.42857143;
    text-decoration: none;
    color: #2c3e50;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-left: -1px;
}

.pagination > li:first-child > a,.pagination > li:first-child > span {
    margin-left: 0;
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
}

.pagination > li:last-child > a,.pagination > li:last-child > span {
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
}

.pagination > li > a:hover,.pagination > li > span:hover,.pagination > li > a:focus,.pagination > li > span:focus {
    z-index: 2;
    color: #11181f;
    background-color: #eeeeee;
    border-color: #ddd;
}

.pagination > .active > a,.pagination > .active > span,.pagination > .active > a:hover,.pagination > .active > span:hover,.pagination > .active > a:focus,.pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    background-color: #2c3e50;
    border-color: #2c3e50;
    cursor: default;
}

.pagination > .disabled > span,.pagination > .disabled > span:hover,.pagination > .disabled > span:focus,.pagination > .disabled > a,.pagination > .disabled > a:hover,.pagination > .disabled > a:focus {
    color: #777777;
    background-color: #fff;
    border-color: #ddd;
    cursor: not-allowed;
}

.pagination-lg > li > a,.pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 15px;
    line-height: 1.3333333;
}

.pagination-lg > li:first-child > a,.pagination-lg > li:first-child > span {
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

.pagination-lg > li:last-child > a,.pagination-lg > li:last-child > span {
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}

.pagination-sm > li > a,.pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 11px;
    line-height: 1.5;
}

.pagination-sm > li:first-child > a,.pagination-sm > li:first-child > span {
    border-bottom-left-radius: 2px;
    border-top-left-radius: 2px;
}

.pagination-sm > li:last-child > a,.pagination-sm > li:last-child > span {
    border-bottom-right-radius: 2px;
    border-top-right-radius: 2px;
}

.pager {
    padding-left: 0;
    margin: 17px 0;
    list-style: none;
    text-align: center;
}

.pager li {
    display: inline;
}

.pager li > a,.pager li > span {
    display: inline-block;
    padding: 5px 14px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
}

.pager li > a:hover,.pager li > a:focus {
    text-decoration: none;
    background-color: #eeeeee;
}

.pager .next > a,.pager .next > span {
    float: right;
}

.pager .previous > a,.pager .previous > span {
    float: left;
}

.pager .disabled > a,.pager .disabled > a:hover,.pager .disabled > a:focus,.pager .disabled > span {
    color: #777777;
    background-color: #fff;
    cursor: not-allowed;
}