/* 公共样式 */
.hide{
      display: none;
}
.wiki_wrap{
      width: 1200px;
      margin: 0 auto;
      padding-bottom: 80px;
}
.wiki_detail{
      background-color:#F4F4F4;
}
.flex{
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
}
/* 首页 */
.wiki_list{
      display: flex;
      align-items: center;
      flex-wrap: wrap;
}
.wiki_list_item{
      position: relative;
}
.wiki_list_item .more{
      position: absolute;
      top: 20px;
      right: 20px;
}
.wiki_list_item .more img{
      width: 22px;
      background:linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%) ;
      border-radius: 50%;
}
/* 详情 二级标题*/
/* 中国画文字描述 */
.writing{
      background-color: #fff;
      font-size: 15px;
      padding: 20px;
      line-height: 26px;
      margin-top: 20px;
}
/* 中国画分类列表 有文字有图片 */
.detail_list_top{
      position: relative;
}
.detail_list_writing{
      position: absolute;
      bottom: 0;
      color: #fff;
      line-height: 24px;
      font-size: 14px;
      padding: 0 20px;
      background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
      padding-bottom: 10px;
      width: 100%;
}
.detail_list_bottom,.detail_list_classify{
      margin-top:20px;
}
.detail_list_bottom .detail_list_item{
      display: flex;
      margin-bottom: 20px;
      background-color: #fff;
      position: relative;
      align-items: center;
     
}
.detail_list_item_img{
      max-width: 170px;
      max-height: 170px;
      min-width: 170px;
      min-height: 170px;
      /* border: 1px solid red; */
      
}
.detail_list_item_img img{
      max-width: 100%;
      max-height: 100%;
      min-width: 100%;
      min-height: 100%;
}
.detail_list_item_img_writing{
      width: 90%;
      padding: 0px 20px;
      padding-bottom: 40px;
}
.detail_list_item_img_writing h3{
      font-size: 16px;
      font-weight: bold;
}
.detail_list_item_img_writing p{
      line-height: 24px;
      font-size: 14px;
}
/* 有文字无图片 */
.clip{
      display:-webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient:vertical;
      text-overflow: ellipsis;
     overflow: hidden;
}
.writing_hide{
      cursor: pointer;
}
.detail_list_item_writing{
   padding:10px 20px;
   /* width: 412px; */
}
.detail_list_item_writing h3{
      font-size: 16px;
      font-weight: bold;
}
.detail_list_item_writing p{
      line-height: 24px;
      font-size: 14px;
}
.more{
      position: absolute;
      bottom:10px;
      right: 25px;
      color: #333;
}
/* 三级标题分类列表查看更多 */
.wiki_detail_classify{
    background-color: #fff;
    padding: 20px 30px;
}
.detail_classify_top h2{
      padding-bottom: 20px;
      text-align: center;
      font-size: 24px;
      font-weight: bold;
}
.detail_classify_top p{
      font-size: 14px;
      margin-top: 10px;
      margin-bottom: 30px;
}
.wiki_detail_classify ul li{
      border: 1px solid #DEDEDE;
      padding: 20px 0;
      display: flex;
      width: 49%;
      margin: 10px 0;
      border-radius: 10px;
      align-items: center;
}
.wiki_detail_classify ul li .classify_img{
      margin-left:20px;
}
.wiki_detail_classify ul li .classify_img_content{
      width: 76%;
      margin: 0 20px;
}
.wiki_detail_classify ul li .classify_content{
      margin: 0 20px;
}
.wiki_detail_classify ul li .classify_img_content h2,.classify_content h2{
      font-size: 16px;
      font-weight: bold;
}
.wiki_detail_classify ul li .classify_img_content p,.classify_content p{
      line-height: 24px;
      font-size: 14px;
}