body{
    background-color: #f7f7f7;
}

.newMain{
    margin:30px 0;
    display: flex;
}
.newMain .left{
    width:280px;
    margin-right: 15px;
    flex-shrink: 0;
}

.newMain .left .rec{
    position: sticky;
    top:5px;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    padding-bottom: 5px;
}
.newMain .left .rec li{
    margin:10px 15px;
}
.newMain .left .rec li a{
    display: block;
    word-break:break-all;
    display:-webkit-box;
    -webkit-line-clamp:1;
    -webkit-box-orient:vertical;
    overflow:hidden;
}
.newMain .left .rec li a:hover{
    color:var(--theme_active);
}

.newMain .left .top{
    font-size:15px;
    height: 40px;
    line-height: 40px;
    margin:0 15px;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
}
.newMain .left .top .line{
    width:3px;
    height: 14px;
    display: block;
    background-color: var(--theme_active);
    margin-right: 8px;
    border-radius: 3px;
}

.newMain .right{
    background-color: #fff;
    width:100%;
    border-radius: 5px;
}
.newMain .right .top{
    margin:20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f5f5f5;
}
.newMain .right .top h2{
    margin-bottom: 10px;
}
.newMain .right .top .info{
    opacity: 0.7;
}

.newMain .right .content{
    margin:5px 20px 20px 20px;
    font-size:16px;
    line-height: 28px;
}
.newMain .right .content img{
    max-width: 100%;
}
.newMain .right .content table{
    max-width: 100%;
    overflow: auto;
}


