

.local {
    padding: 0 calc(50% - 601px);
    background: #FBF6F1;
}

.local a, .local .arrow {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    line-height: 56px;
}

.list {
    padding: 20px calc(50% - 601px);
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #EDEDED;
}

.list .left {
    width: 298px;
    margin-right: 31px;
}

.list .left ul li {
    text-align: center;
    line-height: 60px;
    background: #FBF6F1;
}

.list .left ul li:first-child {
    background: #990009;
    font-size: 20px;
    color: #FFF;
    font-weight: bold;
}

.list .left ul li a {
    font-family: Source Han Sans CN;
    font-weight: 400;
    font-size: 20px;
    color: #999999;
    width: 100%;
    height: 100%;
    display: block;
}

.list .left ul li .show {
    color: #990009;

}

.list .right {
    width: calc(100% - 329px);
}

.list .right .top {
    padding: 20px 0;
    border-bottom: 1px solid #EEEEEE;
    display: flex;
    padding-left: 20px;
    position: relative;
}

.list .right .top::before {
    width: 6px;           /* 定义背景图的实际大小 */
    height: 18px;
    content: '';            /* 必须为空字符串才能激活伪元素 */
    display: block;         /* 让伪元素成为独立块级单元 */
    background: #990009;
    position: absolute;     /* 使用绝对定位精确摆放位置 */
    top: 52%;
    transform: translateY(-50%);
    left: 0;
    border-radius: 3px;
}

.list .right .top span {
    font-family: Source Han Sans CN;
    font-weight: bold;
    font-size: 20px;
    color: #333333;
    position: relative;
}

.list .right .tit {
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    padding: 14px;
    background: #f1f1f1;
    margin-top: 10px;
}

.list .right .afterCss {
    position: relative;
}

.list .right .afterCss::after {
    content: "\00BB";
    color: #000;
    display: block;
    font-size: 25px;
    position: absolute;
    top: 20%;
    right: 10px;
    transform: rotate(90deg);
}

.list .right .afterCssTwo {
    position: relative;
}

.list .right .afterCssTwo::after {
    content: "\00BB";
    color: #000;
    display: block;
    font-size: 25px;
    position: absolute;
    top: 20%;
    right: 10px;
    transform: rotate(-90deg);
}

.list .right .columnList {
    width: 100%;
    display: none;
    font-weight: 400;
    font-size: 18px;
    color: #000000;
    padding: 20px 0;
}

@media screen and (max-width: 768px) {
    .local {
        padding: 0 .2rem;
    }

    .list {
        padding: .2rem;
        display: block;
    }

    .list .right {
        width: 100%;
    }

    .list .left {
        width: 100%;
        margin-right: 0;
    }

    .list .left ul li:first-child {
        font-size: .3rem;
    }

    .list .left ul li {
        line-height: .6rem;
    }

    .list .left ul li a {
        font-size: .24rem;
    }

    .list .right .top {
        padding: .2rem;
    }

    .listBar span {
        font-size: .16rem;
        line-height: .76rem;
    }

    .listBar a {
        font-size: .20rem;
        line-height: .76rem;
    }
}