/* ----------------------- 当前位置 ----------------------- */
.blk-main {
    width: 80%;
    margin: 0 auto;
}

.p12-curmbs-1 {
    font-size: 14px;
    border-bottom: 1px dashed #dcdcdc;
}

.p12-curmbs-1 b {
    border-left: 10px solid #EB3A04;
    font-weight: normal;
    padding-left: 8px;
}

.p12-curmbs-1 i {
    font-style: normal;
}

.p12-curmbs-1 span {
    height: 46px;
    line-height: 46px;
}

/* ----------------------- 内容部分 ----------------------- */
.list-content {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

/* 左侧列表 */
.list-content .left {
    width: 25%;
}

.list-content .left .left-title {
    width: 100%;
    height: 80px;
    line-height: 80px;
    text-align: center;
    color: #fff;
    font-size: 24px;
    background-color: #0c4194;
}

.list-content .left .left-line {
    width: 100%;
    height: 4px;
    background-color: #0c4194;
    margin: 1px 0;
}

.list-content .left .left-sort .sort a {
    display: block;
    height: 50px;
    line-height: 50px;
    background-color: #ECECEC;
    margin-bottom: 2px;
    color: #666;
    padding: 0 56px;
    font-size: 16px;
}

.list-content .left .left-sort .sort .twolevel a {
    padding-left: 76px;
    font-size: 14px;
}

/* 右侧内容 */
.list-content .right {
    width: 70%;
}

/* 右侧新闻列表 */
.list-content .right .listsort li {
    height: 50px;
    line-height: 50px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}

.list-content .right .listsort li:not(:last-child) {
    border-bottom: 1px dashed #dcdcdc;
}

/* 右侧产品列表 */
.list-content .right .productlist {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.list-content .right .productlist li {
    width: 100%;
}
.list-content .right .productlist li img {
    width: 100%;
    border: 1px solid #dedede;
}
.list-content .right .productlist li p {
    text-align: center;
}

/* 右侧产品详情 */
.list-content .right .productdetail h1{
    text-align: center;
    margin-bottom: 30px;
}
.list-content .right .productdetail p img{
    width: 100%;
}

/* 右侧关于我们 */
.list-content .right .aboutcontent img{
    width: 100%;
}

/* 右侧分页导航 */
.list-content .right .pageController {
    margin-top: 20px;
    text-align: center;
}

.list-content .right .pageController a {
    padding: 6px 9px;
    text-decoration: none;
    background: #f4f4f2;
    font-size: 12px;
    font-family: "微软雅黑";
    color: #666;
    margin: 0 2px;
    line-height: 35px;
}

.list-content .right .pageController b {
    background-color: #0C4194;
    padding: 6px 10px;
    text-decoration: none;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0 2px;
    color: #fff;
}


@media screen and (max-width:768px) {
    body {
        min-width: 100%;
    }
    .list-content {
        display: block;
    }

    .list-content .left {
        margin-bottom: 30px;
    }
    .list-content .left,
    .list-content .right {
        width: 100%;
    }

    /* 右侧新闻列表 */
    .list-content .right .listsort li a {
        width: 60%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* 右侧产品列表 */
    .list-content .right .productlist {
        grid-template-columns: repeat(2, 1fr);
    }
}
