.local {
    font-size: 16px;
}

.content {
    padding: 18px calc((100% - 1182px)/2);
}

.layout {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.left-menu ul{
    display: inline-block;
    padding: 10px 0;
    background: #F7F7F7;
}

.left-menu a {
    font-size: 16px;
    display: block;
    position: relative;
}

.left-menu .left {
    width: 7px;
    height: 72px;
    position: absolute;
    top: -5px;
    left: -8px;
    display: none;
}

.left-menu ul .showLeft{
    display: block;
}

.left-menu ul li {
    width: 212px;
    height: 62px;
    line-height: 62px;
    text-align: center;
    background: #F7F7F7;
}

.left-menu ul li::before {
    content: "•";      /* 使用 Unicode 圆点符号 */
    color: #B5B5B5;       /* 自定义颜色 */
    font-size: 1.2em;  /* 调整大小 */
    display: inline-block; 
    width: 1em;
    margin-left: -1em; /* 对齐控制 */
}

.left-menu ul .showLi {
    background: #FFF;
    color: #1764CE;
    font-weight: bold;
}

.left-menu ul .showLi::before {
    color: #1764CE;
}

.list {
    width: 100%;
    padding: 0 32px;
}

.list .list-lf {
    width: 80%;
    color:#000;
    overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.list .listTit {
    color:#000;
}

.list ul a {
    font-size: 16px;
}

.list ul a li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 48px;
}

.list ul a img{
    width: 6px;
    height: 9px;
    margin-right: 10px;
}

.list ul a span {
    color: #999;
}

.list ul .line {
    width: 100%;
    margin: 30px 0;
    border-bottom: 1px solid #E4E4E4;
}

.list ul a:hover {
    color: #1764CE;
}

.list ul .picLi {
    display: block;
    width: 210px;
    height: 230px;
    background: none;
    float: left;
    margin-bottom: 10px;
}

.list ul .picLi .listPic {
    width: 180px;
    height: 180px;
    display: inline-block;
    margin-left: 15px;
}

.list ul .picLi p {
    padding: 0;
    margin: 0;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.list ul .picLi p:hover {
    color: #1764CE;
}


.pagination {
    width: 100%;
    text-align: center;
    font-size: 16px;
    color: #666;
}

.pagination ul {
    display: flex;
    justify-content: center;
}

.pagination ul .page {
    display: inline-block;
    width: 30px;
    line-height: 30px;
    background: #eee;
    border-radius: 3px;
    margin: 0 3px;
}

.pagination ul .page-previous {
    width: 70px;
    line-height: 30px;
    border-radius: 3px;
    margin: 0 3px;
    background: #eee;
}

.pagination ul li a {
    display: inline-block;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #551A8B;
}

li.page.page1.page-active a {
    color: #fff;
}

.pagination ul .page-active {
    color: #FFF;
    background: #1492FF;
}

.pagination ul .page:hover {
    color: #FFF;
    background: #1492FF;
}

.pagination ul .page-previous:hover {
    color: #FFF;
    background: #1492FF;
}

@media screen and (max-width: 768px) {
    .content  {
        display: block;
    }
    .local {
        font-size: .24rem;
        margin: 0.3rem auto 0 0.3rem;
    }

    .layout {
        padding: 0 .3rem;
    }

    .index-w1 {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .left-menu {
        display: none;
    }

    .list {
        padding: 0;
    }

    .list ul .list-lf {
        display: block;
        color: #000;
        font-size: 0.3rem;
        line-height: 30px;
        font-weight: 500;
        display: -webkit-box;
        text-overflow: -o-ellipsis-lastline;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        padding: 6px 0 6px 18px;
        border-bottom: 1px dashed #ccc;
    }

    .list ul a .list-lf {
        width: 96%;
    }

    .pagination {
        margin: 0.3rem auto;
    }
}