/* 隐藏滚动条 */
body::-webkit-scrollbar {
    display: none;
}


/* 中间内容 */
.main {
    display: flex;
    width: 100%;
    height: 74%;
    padding-left: 2.3%;
    padding-right: 3.4%;
}


/* 左侧装饰图 */
.main-left {
    width: 22%;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.main-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* 右侧栏目信息 */
.main-right {
    display: flex;
    justify-content: space-between;
    width: 78%;
    padding: 1.8889vh 0 0 1%;
}

.main-right-column {
    width: 13.5%;
    margin-top: 13px;
    position: relative;
    left: -0.7%;
}

.column-list1>li {
    margin-bottom: 2.2222vh;
}

.column-list1>li>a {
    display: block;
    padding: 2px 1.0417vw 2px 0;
    border-right: 2px solid #000;
}

.column-list1>li>a>p {
    font-size: 1.0417vw;
    color: #333333;
    line-height: 2.4444vh;
    text-align: right;
}

.column-list1>li>a:hover {
    border-right: 2px solid #E11119;
}

.column-list1>li>a:hover p {
    color: #E11119;
}

.column-list2 {
    display: none;
}

.column-list2 li a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #000;
}

.column-list2 li a p {
    font-size: 0.88vw;
    color: #333333;
    line-height: 19px;
    text-align: right;
}

.column-list2 li a:hover p {
    color: #E11119;
}

.column-list3 {
    display: none;
}

.column-list3 li a {
    padding: 10px 0;
}

.column-list3 li a p {
    font-size: 16px;
    color: #333333;
    line-height: 18px;
    text-align: right;
}

.main-right-info {
    width: 97%;
    height: 100%;
    font-size: 18px;
    color: #333333;
    position: relative;
    left: 3.5%;
    overflow-y: scroll;
    scroll-behavior: smooth;
}

.info-top {
    display: flex;
    width: 100%;
}

.info-top-img {
    width: 360px;
    height: auto;
    margin-right: 30px;
}

.info-top-img img {
    width: 100%;
    height: 100%;
}

.info-top-content {
    width: 64%;
    height: 256px;
    overflow-y: scroll;
}

.info-top-content::-webkit-scrollbar {
    width: 0 !important;
}

.info-top-content p {
    font-size: 18px;
    color: #333333;
    text-indent: 36px;
    text-align: justify;
   text-justify: distribute-all-lines;
}

.info-list {
    width: 97%;
    padding-top: 20px;
    margin-top: 38px;
    border-top: 1px solid #999;
}

.info-list li {
    float: left;
    width: 14.5833vw;
    margin-bottom: 10px;
}
.info-list li:not(:nth-of-type(4n)){
    margin-right: 1%;
}
.info-list li a {
    display: block;
}

.info-list li a img {
    width: 100%;
    height: auto;
    /* object-fit: cover;
    object-position: top; */
}

.info-list li a p {
    font-size: 18px;
    color: #333333;
    text-align: center;
    margin-top: 13px;
}

.info-list-line {
    float: left;
    width: 100%;
    height: 1px;
    margin-bottom: 20px;
    border-top: 1px solid #999;
}

.info-list-line:last-child {
    display: none;
}



/* 栏目选中样式 */
.column-list1 .active a {
    border-right: 2px solid #E11119;
}

.column-list1 .active a p {
    color: #E11119;
}

.column-list2 .li-check a p {
    color: #E11119;
}



/* 分页样式 */
#pages {
    margin-bottom: 0;
}

#pages a.previous,
#pages a.next {
    width: 35px;
}

#pages span {
    border: 1px solid #E11119;
    background-color: #E11119;
}

#pages a:hover {
    border: 1px solid #E11119;
    background-color: #E11119;
}