@import 'base_1.css';
/* content */
.pageContent {
	width: calc(100% - 350px) !important;
	padding: 0 100px !important;
}
/* 图书列表样式 */
dl.bookList {
    padding: 16px 18px;
    display: flex;
    width: 50%;

    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0px 0px 4px 1px rgba(12 ,12, 12 ,0.07);
    box-sizing: border-box;
    margin-bottom: 30px;
    float: left;
    cursor: pointer;
}
dl.bookList:nth-child(2n){
    margin-right: 0;
}
dt.imgDt {
    width: 142px;
    height: 180px;
    position: relative;
    overflow: hidden;
}

dl.bookList dt img {
    width: 100%;
    /* height: 100%; */
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}

dd.imgDd {
    margin-left: 24px;
    flex: 1;
    display: flex;
   flex-direction: column;
  justify-content: space-between;
}

dl.bookList dd h2 {
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 700;
   
}
dl.bookList dd h2 a {
     color: #C8102E!important;
}

dl.bookList dd p {
    color: #666;
    font-size: 14px;
    margin-top: 30px;
}

.text_p {
    margin-top: 5px;
    width: 100%;
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    color: #666;
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 12px;
}

/* 小分辨率 */
@media screen and (min-width: 992px) {}

/* 手机 */
@media screen and (max-width: 768px) {}