.container>.fl{
    width: 840px;
}

.lists-nav {
    display: flex;
    flex-wrap: wrap; /* 允许子元素换行 */
    align-items: center;
    justify-content: space-between;
}

.lists-nav a {
    display: block;
    flex: 0 0 23%; /* 每个项目占据23%的宽度，留出一些空间用于margin */
    margin: 1%; /* 给每个项目添加1%的外边距，这样每行可以容纳4个项目 */
    max-width: 152px; /* 设置最大宽度，防止在非常宽的屏幕上过度拉伸 */
    height: 48px;
    box-shadow: 0 6px 15px rgba(0,0,0,.06);
    border-radius: 6px;
    background-color: #fff;
    font-size: 18px;
    line-height: 48px;
    text-align: center;
    color: #666;
    overflow: hidden; /* 防止文本溢出 */
    white-space: nowrap; /* 防止单词换行 */
    text-overflow: ellipsis; /* 当文本溢出时显示省略号 */
}

.lists-nav .opt {
    background-image: linear-gradient(to right, #00bc9f, #00bf2d);
    font-weight: bold;
    color: #fff;
    box-shadow: 0 6px 15px rgba(0,175,87,.4);
}


.lists-navzs {
    display: flex;
    flex-wrap: wrap; /* 允许子元素换行 */
    align-items: center;
    justify-content: space-between;
}

.lists-navzs a {
    display: block;
    margin: 2px; /* 给每个项目添加1%的外边距，这样每行可以容纳4个项目 */
    height: 24px;
    font-size: 13px;
    line-height: 24px;
}

.lists-navzs .optzs {
     color: #000;
}

.lists-content{
    box-sizing: border-box;
    padding: 0 20px;
    background-color: #fff;
    border-radius: 6px;
    margin-top: 20px;
}
.lists-content-div a{
    display: block;
    padding: 30px 0;
    border-bottom: 1px dashed #ddd;
}
.lists-content-div a>h2{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.lists-content-div a>h2 p{
    font-size: 18px;
    font-weight: bold;
    color: #333;
    line-height: 1;
    flex: 1;
    padding-right: 20px;
}
.lists-content-div a:hover>h2 p{
    color: #00bf2d;
}
.lists-content-div a>h2 span{
    display: block;
    width: 80px;
    height: 20px;
    background-color: rgba(46,195,180,.1);
    border-radius: 4px;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
    color: #2ec3b4;
}
.lists-content-div a>p{
    font-size: 14px;
    line-height: 24px;
    color: #bbb;
    margin: 19px 0 -5px;
}


.text-center {
    text-align: center;
}

.pagination {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination li {
    margin: 0 5px;
}

.pagination a {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
    background-color: #e6f4ea; /* 淡绿色背景 */
    border: 1px solid #cdddc3; /* 淡绿色边框 */
    border-radius: 3px;
    transition: background-color 0.3s, color 0.3s;
}

.pagination a:hover,
.pagination a:focus {
    background-color: #d1eab3; /* 较深的淡绿色背景 */
    color: #222;
}

.pagination .active a {
    background-color: #66bb6a; /* 活动页码的深绿色背景 */
    color: #fff;
    border-color: #55a555; /* 活动页码的深绿色边框 */
    pointer-events: none; /* 阻止点击 */
    cursor: default; /* 改变光标为默认样式 */
}

.pagination .active a:hover,
.pagination .active a:focus {
    background-color: #55a555; /* 活动页码在悬停和焦点状态下的深绿色背景 */
    border-color: #448a44; /* 活动页码在悬停和焦点状态下的深绿色边框 */
}


.pagination{
    padding-top: 40px;
    padding-bottom: 40px;
}



.container>.fr{
    width: 340px;
}


.fr-hot{
    width: 100%;
    box-sizing: border-box;
    padding: 24px 20px 20px;
    border-radius: 10px;
    background-color: #fff;
}

.fr-hot-list{
    margin-top: 12px;
}
.fr-hot-list a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}
.fr-hot-list a p{
    font-size: 14px;
    line-height: 1;
    color: #333;
    flex: 1;
    padding-right: 10px;
}
.fr-hot-list a:hover p{
    color: #2abf69;
}
.fr-hot-list a p span{
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 4px;
    background-color: #bbb;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    line-height: 14px;
    text-align: center;
    margin-right: 10px;
    vertical-align: bottom;
}
.fr-hot-list a:nth-child(-n+3) p span{
    background-color: #ff0000;
}
.fr-hot-list a>span{
    display: block;
    font-size: 12px;
    line-height: 1;
    color: #999;
}